File tree 1 file changed +13
-11
lines changed
1 file changed +13
-11
lines changed Original file line number Diff line number Diff line change @@ -16,17 +16,20 @@ jobs:
16
16
strategy :
17
17
fail-fast : true
18
18
matrix :
19
- php : ['8.0', 8.1, 8.2, 8.3]
20
- laravel : [9, 10, 11]
21
- exclude :
19
+ php : [8.1, 8.2, 8.3, 8.4]
20
+ laravel : [10, 11]
21
+ include :
22
+ - php : 8.2
23
+ laravel : 9
24
+ - php : 8.1
25
+ laravel : 9
22
26
- php : ' 8.0'
27
+ laravel : 9
28
+ exclude :
29
+ - php : 8.4
23
30
laravel : 10
24
- - php : ' 8.0 '
31
+ - php : 8.1
25
32
laravel : 11
26
- - php : ' 8.1'
27
- laravel : 11
28
- - php : 8.3
29
- laravel : 9
30
33
31
34
name : PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}
32
35
45
48
46
49
- name : Install dependencies
47
50
run : |
48
- composer require "illuminate/contracts=^${{ matrix.laravel }}" --dev --no-update
49
- composer update --prefer-dist --no-interaction --no-progress
51
+ composer update --prefer-dist --no-interaction --no-progress --with="illuminate/support=^${{ matrix.laravel }}"
50
52
51
53
- name : Execute tests
52
- run : vendor/bin/phpunit
54
+ run : vendor/bin/phpunit ${{ matrix.laravel >= 10 && '--display-deprecations --fail-on-deprecation' || '' }}
You can’t perform that action at this time.
0 commit comments