We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ac6d27 commit dd23312Copy full SHA for dd23312
1 file changed
.github/workflows/reusable-testing.yml
@@ -267,10 +267,10 @@ jobs:
267
id: phpunit_version
268
run: echo "VERSION=$(vendor/bin/phpunit --version | grep --only-matching --max-count=1 --extended-regexp '\b[0-9]+\.[0-9]+')" >> $GITHUB_OUTPUT
269
270
- # PHPUnit 10 may fail a test run when the "old" configuration format is used.
+ # PHPUnit 10+ may fail a test run when the "old" configuration format is used.
271
# Luckily, there is a build-in migration tool since PHPUnit 9.3.
272
- name: Migrate PHPUnit configuration for PHPUnit 10+
273
- if: ${{ startsWith( steps.phpunit_version.outputs.VERSION, '10.' ) }}
+ if: ${{ startsWith( steps.phpunit_version.outputs.VERSION, '1' ) }}
274
continue-on-error: true
275
run: composer phpunit -- --migrate-configuration
276
0 commit comments