Skip to content

Commit ca04803

Browse files
Update tests.yml
1 parent 424d3d0 commit ca04803

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

.github/workflows/tests.yml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
fail-fast: true
1212
matrix:
1313
php: [ "8.2", "8.3", "8.4" ]
14-
laravel: [ "10.0", "11.0" ]
14+
laravel: [ "10.0", "11.0", "12.0" ]
1515

1616
name: PHP ${{ matrix.php }}, Laravel ${{ matrix.laravel }}, SQLite
1717

@@ -29,6 +29,9 @@ jobs:
2929
- name: Install dependencies
3030
run: composer require laravel/framework:^${{ matrix.laravel }}
3131

32+
- name: Update PHPUnit Configuration
33+
run: vendor/bin/phpunit --migrate-configuration
34+
3235
- name: Execute tests
3336
run: vendor/bin/pest --group SQLite
3437

@@ -39,7 +42,7 @@ jobs:
3942
fail-fast: true
4043
matrix:
4144
php: [ "8.2", "8.3", "8.4" ]
42-
laravel: [ "10.0", "11.0" ]
45+
laravel: [ "10.0", "11.0", "12.0" ]
4346
mysql: [ "5.7", "8", "9" ]
4447

4548
name: PHP ${{ matrix.php }}, Laravel ${{ matrix.laravel }}, MySQL ${{ matrix.mysql }}
@@ -72,6 +75,9 @@ jobs:
7275
max_attempts: 5
7376
command: composer require laravel/framework:^${{ matrix.laravel }}
7477

78+
- name: Update PHPUnit Configuration
79+
run: vendor/bin/phpunit --migrate-configuration
80+
7581
- name: Execute tests
7682
run: vendor/bin/pest --group MySQL
7783
env:
@@ -86,7 +92,7 @@ jobs:
8692
fail-fast: true
8793
matrix:
8894
php: [ "8.2", "8.3", "8.4" ]
89-
laravel: [ "10.0", "11.0" ]
95+
laravel: [ "10.0", "11.0", "12.0" ]
9096
psql: [ "12", "13", "14", "15", "16", "17" ]
9197

9298
name: PHP ${{ matrix.php }}, Laravel ${{ matrix.laravel }}, PostgreSQL ${{ matrix.psql }}
@@ -124,6 +130,9 @@ jobs:
124130
- name: Install dependencies
125131
run: composer require laravel/framework:^${{ matrix.laravel }}
126132

133+
- name: Update PHPUnit Configuration
134+
run: vendor/bin/phpunit --migrate-configuration
135+
127136
- name: Execute tests
128137
run: vendor/bin/pest --group Postgres
129138
env:

0 commit comments

Comments
 (0)