Skip to content

Commit d942f64

Browse files
authored
add CI check to ensure up-to-date manifests (#244)
1 parent bb315a2 commit d942f64

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

.github/workflows/CI-devmode.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ jobs:
3737
pip install pre-commit
3838
pre-commit run --show-diff-on-failure --color=always --all-files
3939
40+
- name: Verify that generated manifests are up-to-date
41+
run: make manifests && git diff --exit-code
42+
4043
- name: Build
4144
run: make build
4245

.github/workflows/CI-standalone.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ jobs:
3737
pip install pre-commit
3838
pre-commit run --show-diff-on-failure --color=always --all-files
3939
40+
- name: Verify that generated manifests are up-to-date
41+
run: make manifests && git diff --exit-code
42+
4043
- name: Build
4144
run: make build
4245

.github/workflows/CI.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ jobs:
3737
pip install pre-commit
3838
pre-commit run --show-diff-on-failure --color=always --all-files
3939
40+
- name: Verify that generated manifests are up-to-date
41+
run: make manifests && git diff --exit-code
42+
4043
- name: Build
4144
run: make build
4245

0 commit comments

Comments
 (0)