Skip to content

Commit

Permalink
run tests and watch exit status
Browse files Browse the repository at this point in the history
  • Loading branch information
connorhu committed Mar 19, 2024
1 parent 53186b1 commit 5b0e526
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,14 @@ jobs:
run: php data/bin/check_configuration.php

- name: Run Tests
run: php data/bin/symfony symfony:test --trace
run: |
exit_status=0
php data/bin/symfony symfony:test --trace || exit_status=$?
if [ "${{ matrix.mode }}" = experimental ]
then
echo "exited: $exit_status"
exit 0
else
exit $exit_status
fi

0 comments on commit 5b0e526

Please sign in to comment.