File tree Expand file tree Collapse file tree 2 files changed +41
-15
lines changed Expand file tree Collapse file tree 2 files changed +41
-15
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change
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
+ helm-lint :
18
+ name : Helm Lint
19
+ runs-on : ubuntu-latest
20
+ timeout-minutes : 10
21
+ steps :
22
+
23
+ - run : |
24
+ helm lint --strict
25
+ integration-stest :
26
+ name : Integration Test
27
+ runs-on : ubuntu-latest
28
+ timeout-minutes : 10
29
+ steps :
30
+
31
+
32
+ name : Create K3D Cluster with Container Registry
33
+ with :
34
+ cluster-name : local-ci-k3d-cluster
35
+ args : >-
36
+ --agents 1
37
+ --registry-create local-ci-k3d-registry
38
+ - name : Test
39
+ run : |
40
+ helm install docker-registry . --wait --wait-for-jobs
41
+ kubectl get all,pvc
You can’t perform that action at this time.
0 commit comments