Skip to content

Commit

Permalink
exit code was aborting the rest of the script
Browse files Browse the repository at this point in the history
  • Loading branch information
dragoncoder047 authored Oct 11, 2023
1 parent f3c282d commit 1462f6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: test
id: test
run: |
make test >> .tempfile 2>&1
make test >> .tempfile 2>&1 || true
cat .tempfile
cat .tempfile | grep "Error 74" >/dev/null
if test $? -ne 0; then echo "todo=true" >> "$GITHUB_OUTPUT"; fi
Expand Down

0 comments on commit 1462f6e

Please sign in to comment.