Skip to content

Commit 59fb682

Browse files
committed
feat(ci): add helm lint
Signed-off-by: Cyril Corbon <[email protected]>
1 parent dcc2408 commit 59fb682

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/lint-helm.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: "Lint: helm chart"
2+
on:
3+
push:
4+
branches:
5+
- '**'
6+
paths:
7+
- 'helm/**'
8+
- '.github/workflows/lint-helm.yml'
9+
workflow_dispatch:
10+
11+
jobs:
12+
helm3-lint-test:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Checkout
16+
uses: actions/checkout@v2
17+
18+
- name: Set up Helm
19+
uses: azure/setup-helm@v1
20+
with:
21+
version: v3.4.0
22+
23+
- name: Helm lint
24+
run: helm lint helm/azure-resourcemanager-exporter

0 commit comments

Comments
 (0)