fix: route V1 ListObjects to the list handler instead of raw-forwarding #212
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: | |
| jobs: | |
| helm-lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v7 | |
| - name: Set up Helm | |
| uses: azure/setup-helm@v5.0.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 chart/ | |
| - name: Lint Helm chart | |
| run: | | |
| helm lint chart/ | |
| - name: Validate Helm template | |
| run: | | |
| helm template s3proxy chart/ --debug > /dev/null |