docs(example): ✨ rerun Jupyter Notebook for version 0.6.0 #1
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: | |
| workflow_dispatch: | |
| push: | |
| paths: | |
| - "deploy/**" | |
| - ".github/workflows/helm_lint.yml" | |
| pull_request: | |
| paths: | |
| - "deploy/**" | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Helm | |
| uses: azure/setup-helm@v4 | |
| - name: Lint chart | |
| run: helm lint deploy/helm/craftpath | |
| - name: Render templates (default values) | |
| run: helm template smoke deploy/helm/craftpath > /dev/null | |
| - name: Render templates (external redis + ingress) | |
| run: | | |
| helm template smoke deploy/helm/craftpath \ | |
| --set redis.enabled=false \ | |
| --set redis.externalUrl=redis://example:6379 \ | |
| --set rest.ingress.enabled=true > /dev/null |