Skip to content

Commit fc0fddf

Browse files
Update phpunit.yml
1 parent d10da48 commit fc0fddf

File tree

1 file changed

+23
-2
lines changed

1 file changed

+23
-2
lines changed

.github/workflows/phpunit.yml

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ jobs:
99
strategy:
1010
fail-fast: true
1111
matrix:
12-
php: [ "8.0", "8.1", "8.2", "8.3" ]
13-
laravel: [ "7.0", "8.0", "9.0", "10.0", "11.0" ]
12+
php: [ "8.0", "8.1", "8.2", "8.3", "8.4" ]
13+
laravel: [ "7.0", "8.0", "9.0", "10.0", "11.0", "12.0" ]
1414
exclude:
1515
- laravel: "7.0"
1616
php: "8.1"
@@ -21,9 +21,21 @@ jobs:
2121
- laravel: "7.0"
2222
php: "8.3"
2323

24+
- laravel: "7.0"
25+
php: "8.4"
26+
27+
- laravel: "8.0"
28+
php: "8.3"
29+
2430
- laravel: "8.0"
31+
php: "8.4"
32+
33+
- laravel: "9.0"
2534
php: "8.3"
2635

36+
- laravel: "9.0"
37+
php: "8.4"
38+
2739
- laravel: "10.0"
2840
php: "8.0"
2941

@@ -33,6 +45,12 @@ jobs:
3345
- laravel: "11.0"
3446
php: "8.1"
3547

48+
- laravel: "12.0"
49+
php: "8.0"
50+
51+
- laravel: "12.0"
52+
php: "8.1"
53+
3654
name: PHP ${{ matrix.php }}, Laravel ${{ matrix.laravel }}
3755

3856
steps:
@@ -49,5 +67,8 @@ jobs:
4967
- name: Install dependencies
5068
run: composer require --dev laravel/framework:^${{ matrix.laravel }}
5169

70+
- name: Update PHPUnit Configuration
71+
run: vendor/bin/phpunit --migrate-configuration
72+
5273
- name: Execute tests
5374
run: sudo vendor/bin/phpunit

0 commit comments

Comments
 (0)