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 6da1104 commit b99459eCopy full SHA for b99459e
.github/workflows/tests.yml
@@ -25,12 +25,14 @@ jobs:
25
- name: Setup PHP
26
uses: shivammathur/setup-php@v2
27
with:
28
- php-version: ${{ matrix.php }}
29
- extensions: libxml, simplexml
30
- tools: composer:${{ matrix.composer_version }}
+ php-version: ${{ matrix.php-version }}
+ tools: composer:v2
+ coverage: none
31
32
- name: Install Composer dependencies
33
- run: composer update --no-interaction --no-progress --no-suggest --with=symfony/config:${{ matrix.symfony_constraint }}
+ uses: ramsey/composer-install@v3
34
+ with:
35
+ dependency-versions: ${{ matrix.dependencies }}
36
37
- name: Run PHPUnit tests
38
run: composer test
0 commit comments