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