We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0893c7 commit 88c5349Copy full SHA for 88c5349
.github/workflows/scheduled_test.yml
@@ -63,3 +63,15 @@ jobs:
63
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
64
run: |
65
make scheduled_tests
66
+
67
+ - name: Ensure the tests did not create any additional files
68
+ shell: bash
69
+ run: |
70
+ set -eu
71
72
+ STATUS="$(git status)"
73
+ echo "$STATUS"
74
75
+ # grep will exit non-zero if the target message isn't found,
76
+ # and `set -e` above will cause the step to fail.
77
+ echo "$STATUS" | grep 'nothing to commit, working tree clean'
0 commit comments