General fixes and updates #42
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 Lint | |
| on: | |
| pull_request: | |
| paths: | |
| - 'manifests/**' | |
| jobs: | |
| helm-lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Set up Helm | |
| uses: azure/setup-helm@v4.3.1 | |
| - name: Add Helm dependency repositories | |
| run: | | |
| helm repo add dandydev https://dandydeveloper.github.io/charts | |
| helm repo update | |
| - name: Update Helm dependencies | |
| run: | | |
| helm dependency update manifests/ | |
| - name: Lint Helm chart | |
| run: | | |
| helm lint manifests/ | |
| - name: Validate Helm template | |
| run: | | |
| helm template s3proxy manifests/ --debug > /dev/null |