@@ -13,34 +13,30 @@ jobs:
1313 fail-fast : false
1414 matrix :
1515 php :
16- - 7.4
17- - 7.3
16+ - 8.3
17+ - 8.2
18+ - 8.1
1819 laravel :
19- - 8 .*
20- - 7 .*
20+ - 11 .*
21+ - 10 .*
2122 deps :
2223 - lowest
2324 - latest
2425 include :
26+ - {php: '8.3', laravel: '11.*'}
27+ - {php: '8.2', laravel: '11.*'}
28+
29+ - {php: '8.3', laravel: '10.*'}
2530 - {php: '8.2', laravel: '10.*'}
2631 - {php: '8.1', laravel: '10.*'}
27-
28- - {php: '8.2', laravel: '9.*'}
29- - {php: '8.1', laravel: '9.*'}
30- - {php: '8.0', laravel: '9.*'}
31-
32- - {php: '8.1', laravel: '8.*'}
33- - {php: '8.0', laravel: '8.*'}
3432 exclude :
35- - {php: '8.2', deps: 'lowest'}
36- - {php: '8.1', deps: 'lowest'}
37- - {php: '8.0', deps: 'lowest'}
33+ - {php: '8.1', laravel: '11.*'}
3834 name : PHP ${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.deps }}
3935 steps :
4036 - name : Checkout code
41- uses : actions/checkout@v1
37+ uses : actions/checkout@v4
4238 - name : Cache dependencies
43- uses : actions/cache@v1
39+ uses : actions/cache@v4
4440 with :
4541 path : ~/.composer/cache/files
4642 key : >-
6460 run : composer update --prefer-dist --no-interaction
6561
6662 - name : Execute tests
67- run : vendor/bin/phpunit
63+ run : vendor/bin/phpunit --no-coverage
0 commit comments