Bump pyfirecrest from 3.3.1 to 3.6.0 #45
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: Lint Helm Chart | |
| on: | |
| push: | |
| branches: [ "main", "gh-pages" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| schedule: | |
| - cron: '40 5 * * 2' | |
| jobs: | |
| lint: | |
| name: Helm Lint | |
| runs-on: ubuntu-latest | |
| permissions: | |
| actions: read | |
| contents: read | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up Helm | |
| uses: azure/setup-helm@v4 | |
| with: | |
| version: v3.15.2 | |
| - name: Build Helm dependencies | |
| run: | | |
| helm dependency build chart/f7t4jhub | |
| - name: Build dependencies | |
| run: | | |
| mkdir ci | |
| cd ci | |
| cp ../chart/Chart.yaml ../chart/values.yaml . | |
| cp -r ../chart/f7t4jhub . | |
| helm dependency build | |
| - name: Lint | |
| run: | | |
| cd ci | |
| helm lint |