Skip to content

Commit

Permalink
add CI check to ensure up-to-date manifests (#244)
Browse files Browse the repository at this point in the history
  • Loading branch information
dgrove-oss authored Aug 30, 2024
1 parent bb315a2 commit d942f64
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/CI-devmode.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ jobs:
pip install pre-commit
pre-commit run --show-diff-on-failure --color=always --all-files
- name: Verify that generated manifests are up-to-date
run: make manifests && git diff --exit-code

- name: Build
run: make build

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/CI-standalone.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ jobs:
pip install pre-commit
pre-commit run --show-diff-on-failure --color=always --all-files
- name: Verify that generated manifests are up-to-date
run: make manifests && git diff --exit-code

- name: Build
run: make build

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ jobs:
pip install pre-commit
pre-commit run --show-diff-on-failure --color=always --all-files
- name: Verify that generated manifests are up-to-date
run: make manifests && git diff --exit-code

- name: Build
run: make build

Expand Down

0 comments on commit d942f64

Please sign in to comment.