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:
558558 cd "amphp-$repository"
559559 git rev-parse HEAD
560560 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=$?
563563 echo -e "\n::endgroup::"
564564 if [ ${EXIT_CODE:-0} -gt 128 ]; then
565565 X=1;
@@ -592,8 +592,8 @@ jobs:
592592 cd "reactphp-$repository"
593593 git rev-parse HEAD
594594 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=$?
597597 echo -e "\n::endgroup::"
598598 if [ $[EXIT_CODE:-0} -gt 128 ]; then
599599 X=1;
@@ -629,8 +629,8 @@ jobs:
629629 X=0
630630 for component in $(find src/Symfony -mindepth 2 -type f -name phpunit.xml.dist -printf '%h\n'); do
631631 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=$?
634634 echo -e "\n::endgroup::"
635635 if [ ${EXIT_CODE:-0} -gt 128 ]; then
636636 X=1;
You can’t perform that action at this time.
0 commit comments