We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d24d33 commit 9175d6dCopy full SHA for 9175d6d
1 file changed
.github/workflows/tests.yml
@@ -38,7 +38,9 @@ jobs:
38
39
- name: Install dependencies
40
if: steps.composer-cache.outputs.cache-hit != 'true'
41
- run: composer update --prefer-dist --prefer-${{ matrix.setup }} --no-progress --no-interaction ${{ matrix.php >= 8.1 && '--ignore-platform-req=php' || '' }}
+ run: |
42
+ ${{ matrix.php >= 8.1 && 'composer require --no-update phpunit/phpunit:^8.5.15 --no-interaction;' || '' }}
43
+ composer update --prefer-dist --prefer-${{ matrix.setup }} --no-progress --no-interaction ${{ matrix.php >= 8.1 && '--ignore-platform-req=php' || '' }}
44
45
- name: Run test suite
46
run: vendor/bin/phpunit --no-coverage --verbose
0 commit comments