Skip to content

Commit

Permalink
feat(ci): add helm lint
Browse files Browse the repository at this point in the history
  • Loading branch information
cyril-corbon committed Feb 24, 2021
1 parent dcc2408 commit 856b85c
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/lint-helm.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: "Lint: helm chart"
on:
push:
branches:
- '**'
paths:
- 'helm/**'
workflow_dispatch:

jobs:
helm3-lint-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Run chart linting
uses: helm/[email protected]
with:
command: lint

0 comments on commit 856b85c

Please sign in to comment.