Skip to content

Commit 6af7c29

Browse files
Update phpunit.yml
1 parent 1bc3837 commit 6af7c29

File tree

1 file changed

+17
-2
lines changed

1 file changed

+17
-2
lines changed

.github/workflows/phpunit.yml

+17-2
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,21 @@ jobs:
99
strategy:
1010
fail-fast: true
1111
matrix:
12-
php: [ "8.0", "8.1", "8.2", "8.3" ]
13-
laravel: [ "8.0", "9.0", "10.0", "11.0" ]
12+
php: [ "8.0", "8.1", "8.2", "8.3", "8.4" ]
13+
laravel: [ "8.0", "9.0", "10.0", "11.0", "12.0" ]
1414
exclude:
1515
- laravel: "8.0"
1616
php: "8.3"
1717

18+
- laravel: "8.0"
19+
php: "8.4"
20+
1821
- laravel: "9.0"
1922
php: "8.3"
2023

24+
- laravel: "9.0"
25+
php: "8.4"
26+
2127
- laravel: "10.0"
2228
php: "8.0"
2329

@@ -26,6 +32,12 @@ jobs:
2632

2733
- laravel: "11.0"
2834
php: "8.1"
35+
36+
- laravel: "12.0"
37+
php: "8.0"
38+
39+
- laravel: "12.0"
40+
php: "8.1"
2941

3042
name: PHP ${{ matrix.php }}, Laravel ${{ matrix.laravel }}
3143

@@ -43,5 +55,8 @@ jobs:
4355
- name: Install dependencies
4456
run: composer require --dev laravel/framework:^${{ matrix.laravel }}
4557

58+
- name: Update PHPUnit Configuration
59+
run: vendor/bin/phpunit --migrate-configuration
60+
4661
- name: Execute tests
4762
run: sudo vendor/bin/phpunit

0 commit comments

Comments
 (0)