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 ef7dd7c commit ddc40b9Copy full SHA for ddc40b9
.github/workflows/phpunit.yml
@@ -9,7 +9,7 @@ jobs:
9
strategy:
10
fail-fast: true
11
matrix:
12
- php: [ "8.2", "8.3" ]
+ php: [ "8.2", "8.3", "8.4" ]
13
symfony: [ "6.0", "7.0" ]
14
15
name: PHP ${{ matrix.php }}, Symfony ${{ matrix.symfony }} ${{ matrix.prefer }}
@@ -29,7 +29,10 @@ jobs:
29
run: |
30
composer require --no-interaction \
31
symfony/console:^${{ matrix.symfony }} \
32
- symfony/var-dumper:^${{ matrix.symfony }} \
+ symfony/var-dumper:^${{ matrix.symfony }}
33
+
34
+ - name: Update PHPUnit Configuration
35
+ run: vendor/bin/phpunit --migrate-configuration
36
37
- name: Execute tests
38
run: sudo vendor/bin/phpunit
0 commit comments