We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c343792 commit 4dd0337Copy full SHA for 4dd0337
.github/workflows/test.yaml
@@ -0,0 +1,31 @@
1
+name: Test
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
9
10
11
+jobs:
12
+ test:
13
+ name: Test
14
+ runs-on: ubuntu-latest
15
16
+ steps:
17
+ - name: Checkout code
18
+ uses: actions/checkout@v3
19
20
+ - name: Setup Helm
21
+ uses: azure/[email protected]
22
+ id: install
23
+ with:
24
+ version: v3.14.4
25
26
+ - name: Setup kubeconform-helm
27
+ run: helm plugin install https://github.com/jtyr/kubeconform-helm
28
29
+ - name: Test
30
+ run: helm kubeconform .
31
.kubeconform
@@ -0,0 +1,7 @@
+schema-location:
+ - "default"
+ - "https://github.com/datreeio/CRDs-catalog/raw/main/monitoring.coreos.com/servicemonitor_v1.json"
+output: "pretty"
+verbose: true
+strict: true
+summary: true
0 commit comments