We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1bdbdf3 commit 32862ecCopy full SHA for 32862ec
1 file changed
.github/workflows/validate-defaults.yaml
@@ -0,0 +1,34 @@
1
+---
2
+name: Validate defaults apply
3
+
4
+on: [push, pull_request]
5
6
+jobs:
7
+ validate_defaults:
8
+ name: Json Schema tests
9
+ strategy:
10
+ matrix:
11
+ python-version: [3.11]
12
+ runs-on: ubuntu-latest
13
14
+ steps:
15
+ - name: Checkout Code
16
+ uses: actions/checkout@v4
17
18
+ - name: Set up Python ${{ matrix.python-version }}
19
+ uses: actions/setup-python@v5
20
+ with:
21
+ python-version: ${{ matrix.python-version }}
22
23
24
+ - name: Install yq
25
+ uses: chrisdickinson/setup-yq@latest
26
27
+ yq-version: v4.30.7
28
29
+ - name: Validate clusterGroupName is simple
30
+ run: |
31
+ if [ "$(yq '.main.clusterGroupName' values-global.yaml)" != "simple" ]; then
32
+ echo "main.clusterGroupName must be 'simple'"
33
+ exit 1
34
+ fi
0 commit comments