minio/.github/workflows/helm-lint.yml

31 lines
551 B
YAML
Raw Permalink Normal View History

2023-07-10 23:11:51 -04:00
name: Helm Chart linting
on:
2023-07-10 23:11:51 -04:00
pull_request:
branches:
- master
2023-07-10 23:11:51 -04:00
# This ensures that previous jobs for the PR are canceled when the PR is
# updated.
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
2024-03-28 19:44:49 -04:00
uses: actions/checkout@v4
- name: Install Helm
uses: azure/setup-helm@v4
- name: Run helm lint
run: |
cd helm/minio
helm lint .