Skip to content

Commit 9032740

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

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,4 +63,13 @@ 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+
php data/bin/symfony symfony:test --trace || exit_status=$?
68+
69+
if [ "${{ matrix.mode }}" = experimental ]
70+
then
71+
echo "exited: $exit_status"
72+
exit 0
73+
else
74+
exit $exit_status
75+
fi

0 commit comments

Comments
 (0)