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:
570570 cd "amphp-$repository"
571571 git rev-parse HEAD
572572 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=$?
575575 echo -e "\n::endgroup::"
576576 if [ ${EXIT_CODE:-0} -gt 128 ]; then
577577 X=1;
@@ -604,8 +604,8 @@ jobs:
604604 cd "reactphp-$repository"
605605 git rev-parse HEAD
606606 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=$?
609609 echo -e "\n::endgroup::"
610610 if [ $[EXIT_CODE:-0} -gt 128 ]; then
611611 X=1;
@@ -641,8 +641,8 @@ jobs:
641641 X=0
642642 for component in $(find src/Symfony -mindepth 2 -type f -name phpunit.xml.dist -printf '%h\n'); do
643643 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=$?
646646 echo -e "\n::endgroup::"
647647 if [ ${EXIT_CODE:-0} -gt 128 ]; then
648648 X=1;
You can’t perform that action at this time.
0 commit comments