Skip to content

Commit

Permalink
Merge pull request #321 from jpmcb/github-actions-clean-repo
Browse files Browse the repository at this point in the history
GitHub actions: include step in build to check for clean git status
  • Loading branch information
jpmcb committed Oct 27, 2022
2 parents ecaaa2a + f1d74a0 commit baf4e88
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 baf4e88

Please sign in to comment.