File tree Expand file tree Collapse file tree 2 files changed +13
-13
lines changed Expand file tree Collapse file tree 2 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 11name : CI
22
3- env :
4- COMPOSE_INTERACTIVE_NO_CLI : 1
5- PHP_CS_FIXER_IGNORE_ENV : 1
6- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
7-
83on :
94 push :
105 pull_request :
116 branches : [ master ]
127
138jobs :
149 pest :
15- name : Tests (Pest)
10+ name : Tests (Pest) L${{ matrix.laravel }}
1611 runs-on : ubuntu-latest
12+ strategy :
13+ matrix :
14+ laravel : [8, 9]
1715
1816 steps :
1917 - uses : actions/checkout@v2
2018 - name : Install composer dependencies
21- run : composer install
19+ run : composer require "laravel/framework:^${{matrix.laravel}}.0"
2220 - name : Run tests
2321 run : vendor/bin/pest
2422
Original file line number Diff line number Diff line change 2222 },
2323 "require" : {
2424 "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" ,
2727 "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 "
3030 },
3131 "require-dev" : {
32- "orchestra/testbench" : " ^6.9" ,
32+ "orchestra/testbench" : " ^6.9|^7.0 " ,
3333 "pestphp/pest" : " ^1.2" ,
3434 "pestphp/pest-plugin-laravel" : " ^1.0"
3535 },
3939 " ArchTech\\ Pages\\ PagesServiceProvider"
4040 ]
4141 }
42- }
42+ },
43+ "minimum-stability" : " dev" ,
44+ "prefer-stable" : true
4345}
You can’t perform that action at this time.
0 commit comments