Skip to content

Commit 4dd0337

Browse files
authored
ci: add test workflow (#2)
1 parent c343792 commit 4dd0337

File tree

2 files changed

+38
-0
lines changed

2 files changed

+38
-0
lines changed

.github/workflows/test.yaml

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Test
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
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

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
schema-location:
2+
- "default"
3+
- "https://github.com/datreeio/CRDs-catalog/raw/main/monitoring.coreos.com/servicemonitor_v1.json"
4+
output: "pretty"
5+
verbose: true
6+
strict: true
7+
summary: true

0 commit comments

Comments
 (0)