Skip to content

Commit 843aedc

Browse files
Update phpunit.yml
1 parent ee22519 commit 843aedc

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/phpunit.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,11 @@ jobs:
99
strategy:
1010
fail-fast: true
1111
matrix:
12-
php: [ "8.2", "8.3" ]
13-
laravel: [ "10.0", "11.0" ]
12+
php: [ "8.2", "8.3", "8.4" ]
13+
laravel: [ "10.0", "11.0", "12.0" ]
14+
exclude:
15+
- laravel: "10.0"
16+
php: "8.4"
1417

1518
name: PHP ${{ matrix.php }}, Laravel ${{ matrix.laravel }}
1619

@@ -32,5 +35,8 @@ jobs:
3235
if: matrix.laravel == '10.0'
3336
run: composer require doctrine/dbal
3437

38+
- name: Update PHPUnit Configuration
39+
run: vendor/bin/phpunit --migrate-configuration
40+
3541
- name: Execute tests
3642
run: sudo vendor/bin/phpunit

0 commit comments

Comments
 (0)