|
11 | 11 | fail-fast: true
|
12 | 12 | matrix:
|
13 | 13 | php: [ "8.2", "8.3", "8.4" ]
|
14 |
| - laravel: [ "10.0", "11.0" ] |
| 14 | + laravel: [ "10.0", "11.0", "12.0" ] |
15 | 15 |
|
16 | 16 | name: PHP ${{ matrix.php }}, Laravel ${{ matrix.laravel }}, SQLite
|
17 | 17 |
|
|
29 | 29 | - name: Install dependencies
|
30 | 30 | run: composer require laravel/framework:^${{ matrix.laravel }}
|
31 | 31 |
|
| 32 | + - name: Update PHPUnit Configuration |
| 33 | + run: vendor/bin/phpunit --migrate-configuration |
| 34 | + |
32 | 35 | - name: Execute tests
|
33 | 36 | run: vendor/bin/pest --group SQLite
|
34 | 37 |
|
|
39 | 42 | fail-fast: true
|
40 | 43 | matrix:
|
41 | 44 | php: [ "8.2", "8.3", "8.4" ]
|
42 |
| - laravel: [ "10.0", "11.0" ] |
| 45 | + laravel: [ "10.0", "11.0", "12.0" ] |
43 | 46 | mysql: [ "5.7", "8", "9" ]
|
44 | 47 |
|
45 | 48 | name: PHP ${{ matrix.php }}, Laravel ${{ matrix.laravel }}, MySQL ${{ matrix.mysql }}
|
|
72 | 75 | max_attempts: 5
|
73 | 76 | command: composer require laravel/framework:^${{ matrix.laravel }}
|
74 | 77 |
|
| 78 | + - name: Update PHPUnit Configuration |
| 79 | + run: vendor/bin/phpunit --migrate-configuration |
| 80 | + |
75 | 81 | - name: Execute tests
|
76 | 82 | run: vendor/bin/pest --group MySQL
|
77 | 83 | env:
|
|
86 | 92 | fail-fast: true
|
87 | 93 | matrix:
|
88 | 94 | php: [ "8.2", "8.3", "8.4" ]
|
89 |
| - laravel: [ "10.0", "11.0" ] |
| 95 | + laravel: [ "10.0", "11.0", "12.0" ] |
90 | 96 | psql: [ "12", "13", "14", "15", "16", "17" ]
|
91 | 97 |
|
92 | 98 | name: PHP ${{ matrix.php }}, Laravel ${{ matrix.laravel }}, PostgreSQL ${{ matrix.psql }}
|
@@ -124,6 +130,9 @@ jobs:
|
124 | 130 | - name: Install dependencies
|
125 | 131 | run: composer require laravel/framework:^${{ matrix.laravel }}
|
126 | 132 |
|
| 133 | + - name: Update PHPUnit Configuration |
| 134 | + run: vendor/bin/phpunit --migrate-configuration |
| 135 | + |
127 | 136 | - name: Execute tests
|
128 | 137 | run: vendor/bin/pest --group Postgres
|
129 | 138 | env:
|
|
0 commit comments