1717 matrix :
1818 os : [ ubuntu-latest ]
1919 php : [ 8.4, 8.3, 8.2 ]
20- laravel : [ 12.*, 11.*, 10.* ]
20+ laravel : [ 13.*, 12.*, 11.*, 10.* ]
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
2932 - laravel : 10.*
3033 testbench : 8.*
3134 carbon : ^2.63
35+ exclude :
36+ - laravel : 13.*
37+ php : 8.2
3238
3339 name : P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
3440
4652 with :
4753 php-version : ${{ matrix.php }}
4854 extensions : curl, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, iconv
49- coverage : ${{ startsWith(github.event.head_commit.message, 'coverage') && matrix.php == '8.4' && matrix.laravel == '12 .*' && matrix.stability == 'prefer-stable' && 'xdebug' || 'none' }}
55+ coverage : ${{ startsWith(github.event.head_commit.message, 'coverage') && matrix.php == '8.4' && matrix.laravel == '13 .*' && matrix.stability == 'prefer-stable' && 'xdebug' || 'none' }}
5056
5157 - name : Install dependencies
5258 run : |
@@ -55,10 +61,10 @@ jobs:
5561
5662 - name : Execute tests
5763 run : |
58- vendor/bin/phpunit ${{ startsWith(github.event.head_commit.message, 'coverage') && matrix.php == '8.4' && matrix.laravel == '12 .*' && matrix.stability == 'prefer-stable' && '--coverage-clover=clover.xml' || '' }}
64+ 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' || '' }}
5965
6066 - name : Make code coverage badge
61- if : startsWith(github.event.head_commit.message, 'coverage') && matrix.php == '8.4' && matrix.laravel == '12 .*' && matrix.stability == 'prefer-stable'
67+ if : startsWith(github.event.head_commit.message, 'coverage') && matrix.php == '8.4' && matrix.laravel == '13 .*' && matrix.stability == 'prefer-stable'
6268 uses : timkrase/phpunit-coverage-badge@v1.2.1
6369 with :
6470 coverage_badge_path : .github/coverage.svg
0 commit comments