Make migrate-db job spec configurable to fix GitOps job loop - CLM-30003 #67
Workflow file for this run
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 Tests | |
| on: | |
| pull_request: | |
| branches: | |
| - '**' | |
| jobs: | |
| helm-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up Helm | |
| uses: azure/setup-helm@v4 | |
| with: | |
| version: v4.1.3 | |
| - name: Install dependencies | |
| run: helm dependency update chart/ | |
| - name: Run Helm lint | |
| run: helm lint chart/ | |
| - name: Run Helm template | |
| run: helm template chart/ | |
| - name: Install unittest plugin | |
| # --verify=false: plugin does not yet ship .prov files (https://github.com/helm-unittest/helm-unittest/issues/777) | |
| run: helm plugin install https://github.com/helm-unittest/helm-unittest.git --verify=false | |
| - name: Run Helm tests | |
| run: helm unittest chart/ |