Skip to content

Commit 299396c

Browse files
committed
ci: setup basic ci
1 parent 524a0a9 commit 299396c

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
# GitHub Actions Workflows Ref: https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions
3+
name: CI
4+
"on":
5+
push:
6+
branches:
7+
- main
8+
pull_request:
9+
branches:
10+
- "**"
11+
workflow_dispatch:
12+
concurrency:
13+
group: ${{ github.event_name }}-${{ github.ref }}-${{ github.workflow }}
14+
cancel-in-progress: true
15+
permissions: read-all
16+
jobs:
17+
lint:
18+
name: Lint
19+
runs-on: ubuntu-latest
20+
steps:
21+
- uses: actions/[email protected]
22+
- name: Helm Lint
23+
run: |
24+
helm lint --strict

0 commit comments

Comments
 (0)