1717 matrix :
1818 os : [ ubuntu-latest ]
1919 php : [ 8.4, 8.3, 8.2, 8.1 ]
20- laravel : [ 12.*, 11.*, ^10.48 ]
20+ laravel : [ 13.*, 12.*, 11.*, ^10.48 ]
2121 stability : [ prefer-lowest, prefer-stable ]
2222 include :
23+ - laravel : 13.*
24+ testbench : 11.*
25+ carbon : ^3.8.4
2326 - laravel : 12.*
2427 testbench : 10.*
2528 carbon : ^3.8.4
3033 testbench : 8.*
3134 carbon : ^2.63
3235 exclude :
36+ - laravel : 13.*
37+ php : 8.2
38+ - laravel : 13.*
39+ php : 8.1
3340 - laravel : 12.*
3441 php : 8.1
3542 - laravel : 11.*
6370 with :
6471 php-version : ${{ matrix.php }}
6572 extensions : curl, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, iconv
66- coverage : ${{ startsWith(github.event.head_commit.message, 'coverage') && matrix.php == '8.3 ' && matrix.laravel == '11 .*' && matrix.stability == 'prefer-stable' && 'xdebug' || 'none' }}
73+ coverage : ${{ startsWith(github.event.head_commit.message, 'coverage') && matrix.php == '8.4 ' && matrix.laravel == '13 .*' && matrix.stability == 'prefer-stable' && 'xdebug' || 'none' }}
6774
6875 - name : Install dependencies
6976 run : |
@@ -72,14 +79,14 @@ jobs:
7279
7380 - name : Execute tests
7481 run : |
75- vendor/bin/phpunit ${{ startsWith(github.event.head_commit.message, 'coverage') && matrix.php == '8.3 ' && matrix.laravel == '11 .*' && matrix.stability == 'prefer-stable' && '--coverage-clover=clover.xml' || '' }}
82+ vendor/bin/phpunit ${{ startsWith(github.event.head_commit.message, 'coverage') && matrix.php == '8.4 ' && matrix.laravel == '13 .*' && matrix.stability == 'prefer-stable' && '--coverage-clover=clover.xml' || '' }}
7683 env :
7784 DB_USERNAME : user
7885 DB_PASSWORD : secret
7986 DB_PORT : ${{ job.services.mysql.ports[3306] }}
8087
8188 - name : Make code coverage badge
82- if : startsWith(github.event.head_commit.message, 'coverage') && matrix.php == '8.3 ' && matrix.laravel == '11 .*' && matrix.stability == 'prefer-stable'
89+ if : startsWith(github.event.head_commit.message, 'coverage') && matrix.php == '8.4 ' && matrix.laravel == '13 .*' && matrix.stability == 'prefer-stable'
8390 uses : timkrase/phpunit-coverage-badge@v1.2.1
8491 with :
8592 coverage_badge_path : .github/coverage.svg
0 commit comments