Skip to content

Commit e7fcce1

Browse files
committed
run tests and watch exit status
1 parent f945a13 commit e7fcce1

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

Diff for: .github/workflows/continuous-integration.yml

+11-1
Original file line numberDiff line numberDiff line change
@@ -59,4 +59,14 @@ jobs:
5959
run: php data/bin/check_configuration.php
6060

6161
- name: Run Tests
62-
run: php data/bin/symfony symfony:test --trace
62+
run: |
63+
exit_status=0
64+
php data/bin/symfony symfony:test --trace || exit_status=$?
65+
66+
if [ "${{ matrix.mode }}" = experimental ]
67+
then
68+
echo "exited: $exit_status"
69+
exit 0
70+
else
71+
exit $exit_status
72+
fi

0 commit comments

Comments
 (0)