Skip to content

Commit 456ee6d

Browse files
committed
run tests and watch exit status
1 parent cbf51e8 commit 456ee6d

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/continuous-integration.yml

+11-1
Original file line numberDiff line numberDiff line change
@@ -63,4 +63,14 @@ jobs:
6363
run: php data/bin/check_configuration.php
6464

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

0 commit comments

Comments
 (0)