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

32 lines
560 B
YAML
Raw Normal View History

2023-07-11 03:11:51 +00:00
name: Helm Chart linting
on:
2023-07-11 03:11:51 +00:00
pull_request:
branches:
2023-07-11 03:11:51 +00:00
- master
2023-10-12 13:15:10 +00:00
- next
2023-07-11 03:11:51 +00: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
uses: actions/checkout@v3
- name: Install Helm
uses: azure/setup-helm@v3
- name: Run helm lint
run: |
cd helm/minio
helm lint .