Skip to content

Commit

Permalink
gha: add helm lint workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Michal Fiedorowicz <[email protected]>
  • Loading branch information
mfiedorowicz committed Oct 15, 2024
1 parent 1d528ba commit 217a781
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/helm-lint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Helm - lint
on:
push:
branches:
- "!release"
paths:
- "charts/**"
pull_request:
paths:
- "charts/**"

concurrency:
group: ${{ github.workflow }}
cancel-in-progress: false

permissions:
contents: write
pull-requests: write

jobs:
go-test:
runs-on: ubuntu-latest
timeout-minutes: 10
defaults:
run:
working-directory: charts
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Helm
uses: azure/[email protected]
- name: Run helm lint
run: helm lint diode

0 comments on commit 217a781

Please sign in to comment.