|
@@ -114,9 +114,13 @@ jobs:
|
|
|
run: "echo \"::set-env name=SYMFONY_PHPUNIT_VERSION::7.5\""
|
|
|
|
|
|
- name: "Run tests"
|
|
|
- if: "matrix.php-version != '8.0'"
|
|
|
+ if: "matrix.php-version != '8.0' && matrix.php-version != '7.3'"
|
|
|
run: "vendor/bin/simple-phpunit"
|
|
|
|
|
|
+ - name: "Run Complete test suite"
|
|
|
+ if: "matrix.php-version == '7.3'"
|
|
|
+ run: "vendor/bin/simple-phpunit --configuration tests/complete.phpunit.xml"
|
|
|
+
|
|
|
- name: "Run tests for PHP 8"
|
|
|
if: "matrix.php-version == '8.0'"
|
|
|
- run: "bin/composer remove --dev symfony/phpunit-bridge --ignore-platform-reqs && bin/composer require phpunit/phpunit:^7.5 --ignore-platform-reqs"
|
|
|
+ run: "bin/composer remove --dev symfony/phpunit-bridge --ignore-platform-reqs && bin/composer require phpunit/phpunit:^7.5 --ignore-platform-reqs && vendor/bin/phpunit"
|