Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,8 @@ jobs:
- uses: azure/setup-helm@v4
with:
version: latest
- run: helm lint .
- run: helm template forail . > /dev/null
# needtofix H3 makes secrets.forailAdminPassword required, so the render
# checks must supply a throwaway value (never a real secret — this only
# exercises template rendering, nothing is deployed).
- run: helm lint . --set secrets.forailAdminPassword=ci-render-check
- run: helm template forail . --set secrets.forailAdminPassword=ci-render-check > /dev/null
Loading