relaxed bucket names #8
Workflow file for this run
This file contains 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: CI helm | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- deploy/** | |
pull_request: | |
branches: | |
- main | |
paths: | |
- deploy/** | |
jobs: | |
helm-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install helm | |
uses: azure/[email protected] | |
- name: Lint default chart | |
run: | | |
helm lint ./deploy/chorus --strict | |
- name: Lint chart with all components enabled | |
run: | | |
helm lint ./deploy/chorus --strict --set agent.enabled=true,worker.config.metrics.enabled=true,proxy.config.metrics.enabled=true,agent.config.metrics.enabled=true |