File tree 1 file changed +16
-17
lines changed
1 file changed +16
-17
lines changed Original file line number Diff line number Diff line change 8
8
9
9
jobs :
10
10
test :
11
- runs-on : ${{ matrix.os }}
11
+ runs-on : ubuntu-latest
12
12
strategy :
13
13
fail-fast : true
14
14
matrix :
15
- os : [ubuntu-latest]
16
- php : [8.3, 8.4]
17
- laravel : [10.*]
18
- stability : [prefer-stable]
19
15
include :
20
- - laravel : 10.*
21
- testbench : 8.*
22
- carbon : ^2.63
23
- - laravel : 11.*
24
- testbench : 9.*
25
- carbon : ^3.0
26
- - laravel : 12.*
27
- testbench : 10.*
28
- carbon : ^3.0
29
-
16
+ - php : 8.3
17
+ env :
18
+ LARAVEL : 11.*
19
+ TESTBENCH : 9.*
20
+ - php : 8.4
21
+ env :
22
+ LARAVEL : 11.*
23
+ TESTBENCH : 9.*
24
+ - php : 8.4
25
+ env :
26
+ LARAVEL : 12.*
27
+ TESTBENCH : 10.*
28
+ env : ${{ matrix.env }}
30
29
name : P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
31
30
32
31
steps :
47
46
48
47
- name : Install dependencies
49
48
run : |
50
- composer require "laravel/framework:${{ matrix.laravel }} " "orchestra/testbench:${{ matrix.testbench }}" "nesbot/carbon:${{ matrix.carbon } }" --no-interaction --no-update
51
- composer update --${{ matrix.stability }} --prefer-dist --no-interaction
49
+ composer require "laravel/framework:${LARAVEL} " "orchestra/testbench:${TESTBENCH }" --no-interaction --no-update
50
+ composer update --prefer-stable --prefer-dist --no-interaction
52
51
53
52
- name : List Installed Dependencies
54
53
run : composer show -D
You can’t perform that action at this time.
0 commit comments