@@ -17,15 +17,19 @@ jobs:
1717 matrix :
1818 os : [ ubuntu-latest ]
1919 php : [ 8.4, 8.3, 8.2, 8.1, 8.0, 7.4, 7.2 ]
20- laravel : [ 12.*, 11.*, 10.*, 9.*, 8.*, 7.*, 6.*, ^5.6 ]
20+ laravel : [ 13.*, 12.*, 11.*, 10.*, 9.*, 8.*, 7.*, 6.*, ^5.6 ]
2121 stability : [ prefer-lowest, prefer-stable ]
2222 include :
23+ - laravel : 13.*
24+ testbench : 11.*
25+ carbon : ^3.8.4
26+ phpunit : ^12.5.8
2327 - laravel : 12.*
2428 testbench : 10.*
2529 carbon : ^3.8.4
2630 phpunit : ^11.5.3
2731 - laravel : 11.*
28- testbench : 9.*
32+ testbench : ^9.16
2933 carbon : ^2.63
3034 phpunit : ^10.5
3135 - laravel : 10.*
5357 carbon : ^2.63
5458 phpunit : ^8.5
5559 exclude :
60+ - laravel : 13.*
61+ php : 8.2
62+ - laravel : 13.*
63+ php : 8.1
64+ - laravel : 13.*
65+ php : 8.0
66+ - laravel : 13.*
67+ php : 7.4
68+ - laravel : 13.*
69+ php : 7.2
5670 - laravel : 12.*
5771 php : 8.1
5872 - laravel : 12.*
@@ -124,7 +138,7 @@ jobs:
124138 with :
125139 php-version : ${{ matrix.php }}
126140 extensions : curl, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, iconv
127- coverage : ${{ startsWith(github.event.head_commit.message, 'coverage') && matrix.php == '8.4' && matrix.laravel == '12 .*' && matrix.stability == 'prefer-stable' && 'xdebug' || 'none' }}
141+ coverage : ${{ startsWith(github.event.head_commit.message, 'coverage') && matrix.php == '8.4' && matrix.laravel == '13 .*' && matrix.stability == 'prefer-stable' && 'xdebug' || 'none' }}
128142
129143 - name : Install dependencies
130144 run : |
@@ -133,10 +147,10 @@ jobs:
133147
134148 - name : Execute tests
135149 run : |
136- 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' || '' }}
150+ 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' || '' }}
137151
138152 - name : Make code coverage badge
139- if : startsWith(github.event.head_commit.message, 'coverage') && matrix.php == '8.4' && matrix.laravel == '12 .*' && matrix.stability == 'prefer-stable'
153+ if : startsWith(github.event.head_commit.message, 'coverage') && matrix.php == '8.4' && matrix.laravel == '13 .*' && matrix.stability == 'prefer-stable'
140154 uses : timkrase/phpunit-coverage-badge@v1.2.1
141155 with :
142156 coverage_badge_path : .github/coverage.svg
0 commit comments