We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65c5e6f commit 7e30db2Copy full SHA for 7e30db2
.github/workflows/build-test-measure.yml
@@ -532,7 +532,10 @@ jobs:
532
- name: Update PHPUnit
533
if: needs.pre-run.outputs.changed-php-count > 0
534
run: |
535
- if [[ $PHP_VERSION == "7.1" ]]; then
+ if [[ $PHP_VERSION == "7.0" ]]; then
536
+ echo "Installing PHPUnit 6.5.x"
537
+ composer require --ignore-platform-reqs --no-interaction --no-scripts phpunit/phpunit:^6.5 --with-dependencies
538
+ elif [[ $PHP_VERSION == "7.1" ]]; then
539
echo "Installing PHPUnit 7.5.x"
540
composer require --ignore-platform-reqs --no-interaction --no-scripts phpunit/phpunit:^7.5 --with-dependencies
541
elif [[ $PHP_VERSION == "7.2" ]]; then
0 commit comments