1
0
Fork 0

Try fixing php8 build

pull/8880/head
Jordi Boggiano 2020-05-06 11:25:57 +02:00
parent 592b05df11
commit 9c0f7d4bce
No known key found for this signature in database
GPG Key ID: 7BBD42C429EC80BC
1 changed files with 5 additions and 0 deletions

View File

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