File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -558,8 +558,8 @@ jobs:
558
558
cd "amphp-$repository"
559
559
git rev-parse HEAD
560
560
php /usr/bin/composer install --no-progress --ignore-platform-req=php+
561
- vendor/bin/phpunit
562
- EXIT_CODE=$?
561
+ EXIT_CODE=0
562
+ vendor/bin/phpunit || EXIT_CODE=$?
563
563
echo -e "\n::endgroup::"
564
564
if [ ${EXIT_CODE:-0} -gt 128 ]; then
565
565
X=1;
@@ -592,8 +592,8 @@ jobs:
592
592
cd "reactphp-$repository"
593
593
git rev-parse HEAD
594
594
php /usr/bin/composer install --no-progress --ignore-platform-req=php+
595
- vendor/bin/phpunit
596
- EXIT_CODE=$?
595
+ EXIT_CODE=0
596
+ vendor/bin/phpunit || EXIT_CODE=$?
597
597
echo -e "\n::endgroup::"
598
598
if [ $[EXIT_CODE:-0} -gt 128 ]; then
599
599
X=1;
@@ -629,8 +629,8 @@ jobs:
629
629
X=0
630
630
for component in $(find src/Symfony -mindepth 2 -type f -name phpunit.xml.dist -printf '%h\n'); do
631
631
echo "::group::$component"
632
- php ./phpunit $component --exclude-group tty --exclude-group benchmark --exclude-group intl-data --exclude-group transient --exclude-group skip
633
- EXIT_CODE=$?
632
+ EXIT_CODE=0
633
+ php ./phpunit $component --exclude-group tty --exclude-group benchmark --exclude-group intl-data --exclude-group transient --exclude-group skip || EXIT_CODE=$?
634
634
echo -e "\n::endgroup::"
635
635
if [ ${EXIT_CODE:-0} -gt 128 ]; then
636
636
X=1;
You can’t perform that action at this time.
0 commit comments