File tree 2 files changed +13
-13
lines changed
2 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 1
1
name : CI
2
2
3
- env :
4
- COMPOSE_INTERACTIVE_NO_CLI : 1
5
- PHP_CS_FIXER_IGNORE_ENV : 1
6
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
7
-
8
3
on :
9
4
push :
10
5
pull_request :
11
6
branches : [ master ]
12
7
13
8
jobs :
14
9
pest :
15
- name : Tests (Pest)
10
+ name : Tests (Pest) L${{ matrix.laravel }}
16
11
runs-on : ubuntu-latest
12
+ strategy :
13
+ matrix :
14
+ laravel : [8, 9]
17
15
18
16
steps :
19
17
- uses : actions/checkout@v2
20
18
- name : Install composer dependencies
21
- run : composer install
19
+ run : composer require "laravel/framework:^${{matrix.laravel}}.0"
22
20
- name : Run tests
23
21
run : vendor/bin/pest
24
22
Original file line number Diff line number Diff line change 22
22
},
23
23
"require" : {
24
24
"php" : " ^8.0" ,
25
- "illuminate/support" : " ^8.24" ,
26
- "archtechx/laravel-seo" : " ^0.2 .2" ,
25
+ "illuminate/support" : " ^8.24|^9.0 " ,
26
+ "archtechx/laravel-seo" : " ^0.3 .2" ,
27
27
"ryangjchandler/orbit" : " *" ,
28
- "illuminate/routing" : " ^8.53" ,
29
- "illuminate/database" : " ^8.53"
28
+ "illuminate/routing" : " ^8.53|^9.0 " ,
29
+ "illuminate/database" : " ^8.53|^9.0 "
30
30
},
31
31
"require-dev" : {
32
- "orchestra/testbench" : " ^6.9" ,
32
+ "orchestra/testbench" : " ^6.9|^7.0 " ,
33
33
"pestphp/pest" : " ^1.2" ,
34
34
"pestphp/pest-plugin-laravel" : " ^1.0"
35
35
},
39
39
" ArchTech\\ Pages\\ PagesServiceProvider"
40
40
]
41
41
}
42
- }
42
+ },
43
+ "minimum-stability" : " dev" ,
44
+ "prefer-stable" : true
43
45
}
You can’t perform that action at this time.
0 commit comments