Skip to content

Commit

Permalink
Add test for clean repo after everest tests
Browse files Browse the repository at this point in the history
  • Loading branch information
larsevj committed Jan 24, 2025
1 parent cef932f commit a102a49
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/test_everest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,3 +89,14 @@ jobs:
uses: codecov/test-results-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}

- name: Test for a clean repository
run: |
# Remove things we have generated on purpose:
rm -rf .coverage
rm -f coverage.xml cov1.xml cov2.xml junit.xml
rm -f ert.*.whl
rm -f codecov.SHA*
rm -f codecov
git status --porcelain
test -z "$(git status --porcelain)"

0 comments on commit a102a49

Please sign in to comment.