This repository was archived by the owner on Mar 3, 2026. It is now read-only.
Merge pull request #3 from Gthulhu/copilot/fix-216da279-43e9-494e-888… #3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Helm Lint | |
| on: | |
| push: | |
| branches: [ main, develop ] | |
| paths: | |
| - 'gthulhu/**' | |
| - '.github/workflows/helm-lint.yaml' | |
| pull_request: | |
| branches: [ main, develop ] | |
| paths: | |
| - 'gthulhu/**' | |
| - '.github/workflows/helm-lint.yaml' | |
| jobs: | |
| helm-lint: | |
| name: Lint Helm Chart | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Helm | |
| uses: azure/setup-helm@v3 | |
| with: | |
| version: v3.13.0 | |
| - name: Lint Helm chart with default values | |
| run: | | |
| helm lint gthulhu | |
| - name: Lint Helm chart with production values | |
| run: | | |
| helm lint gthulhu -f gthulhu/values-production.yaml | |
| - name: Test Helm template rendering with default values | |
| run: | | |
| helm template gthulhu gthulhu --debug | |
| - name: Test Helm template rendering with production values | |
| run: | | |
| helm template gthulhu gthulhu -f gthulhu/values-production.yaml --debug |