Skip to content

Commit 32862ec

Browse files
committed
chore: add missing file
Signed-off-by: Chris Butler <chris.butler@redhat.com>
1 parent 1bdbdf3 commit 32862ec

1 file changed

Lines changed: 34 additions & 0 deletions

File tree

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
with:
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

Comments
 (0)