Skip to content

Commit

Permalink
GitHub actions: include step in build to check for clean git status
Browse files Browse the repository at this point in the history
Signed-off-by: John McBride <jpmmcb@amazon.com>
  • Loading branch information
jpmcb committed Oct 26, 2022
1 parent 5e51411 commit f1d74a0
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,14 @@ jobs:
- uses: actions/checkout@v3
- run: rustup update stable
- run: make build
- name: Ensure git is clean
run: test -z "$(git status --untracked-files=all --porcelain)"

build-container:
name: brupop-image
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: make brupop-image
- name: Ensure git is clean
run: test -z "$(git status --untracked-files=all --porcelain)"

0 comments on commit f1d74a0

Please sign in to comment.