We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 962c4b2 commit 27b8082Copy full SHA for 27b8082
1 file changed
.github/workflows/regression.yaml
@@ -39,17 +39,17 @@ jobs:
39
if: ${{ ! startsWith(github.ref, 'refs/tags/') }}
40
run: |
41
pushd tests
42
- fail=0
+ fail=0
43
for dir in `find . -mindepth 1 -maxdepth 1 -type d`; do
44
pushd $dir
45
- if ! make; then
+ if ! make; then
46
fail=1
47
- popd
48
- break
49
- fi
+ popd
+ break
+ fi
50
popd
51
done
52
- if [ ! $fail -eq 0 ]; then false; else true; fi
+ if [ ! $fail -eq 0 ]; then false; else true; fi
53
54
- name: Upload artifacts
55
uses: actions/upload-artifact@v4
0 commit comments