Skip to content

Commit

Permalink
Revert "Rm additional file check for scheduled tests (#11192)" (#11297)
Browse files Browse the repository at this point in the history
This reverts commit ff90bb5.

Requires #11296 to merge first.
  • Loading branch information
obi1kenobi authored Oct 4, 2023
1 parent b0893c7 commit 88c5349
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/scheduled_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,3 +63,15 @@ jobs:
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
run: |
make scheduled_tests
- name: Ensure the tests did not create any additional files
shell: bash
run: |
set -eu
STATUS="$(git status)"
echo "$STATUS"
# grep will exit non-zero if the target message isn't found,
# and `set -e` above will cause the step to fail.
echo "$STATUS" | grep 'nothing to commit, working tree clean'

0 comments on commit 88c5349

Please sign in to comment.