Skip to content

fix: emit listing LastModified as RFC3339 'Z' (rclone rejects +00:00) #213

fix: emit listing LastModified as RFC3339 'Z' (rclone rejects +00:00)

fix: emit listing LastModified as RFC3339 'Z' (rclone rejects +00:00) #213

Workflow file for this run

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