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 @@ -570,8 +570,8 @@ jobs:
570
570
cd "amphp-$repository"
571
571
git rev-parse HEAD
572
572
php /usr/bin/composer install --no-progress --ignore-platform-req=php+
573
- vendor/bin/phpunit
574
- EXIT_CODE=$?
573
+ EXIT_CODE=0
574
+ vendor/bin/phpunit || EXIT_CODE=$?
575
575
echo -e "\n::endgroup::"
576
576
if [ ${EXIT_CODE:-0} -gt 128 ]; then
577
577
X=1;
@@ -604,8 +604,8 @@ jobs:
604
604
cd "reactphp-$repository"
605
605
git rev-parse HEAD
606
606
php /usr/bin/composer install --no-progress --ignore-platform-req=php+
607
- vendor/bin/phpunit
608
- EXIT_CODE=$?
607
+ EXIT_CODE=0
608
+ vendor/bin/phpunit || EXIT_CODE=$?
609
609
echo -e "\n::endgroup::"
610
610
if [ $[EXIT_CODE:-0} -gt 128 ]; then
611
611
X=1;
@@ -641,8 +641,8 @@ jobs:
641
641
X=0
642
642
for component in $(find src/Symfony -mindepth 2 -type f -name phpunit.xml.dist -printf '%h\n'); do
643
643
echo "::group::$component"
644
- php ./phpunit $component --exclude-group tty --exclude-group benchmark --exclude-group intl-data --exclude-group transient --exclude-group skip
645
- EXIT_CODE=$?
644
+ EXIT_CODE=0
645
+ php ./phpunit $component --exclude-group tty --exclude-group benchmark --exclude-group intl-data --exclude-group transient --exclude-group skip || EXIT_CODE=$?
646
646
echo -e "\n::endgroup::"
647
647
if [ ${EXIT_CODE:-0} -gt 128 ]; then
648
648
X=1;
You can’t perform that action at this time.
0 commit comments