File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 8
8
9
9
strategy :
10
10
matrix :
11
- php : [8.0, 8.1]
11
+ php : [8.0, 8.1, 8.2 ]
12
12
laravel : [8]
13
13
14
14
steps :
15
15
- name : Checkout code
16
- uses : actions/checkout@v2
16
+ uses : actions/checkout@v3
17
17
18
18
- name : Setup PHP
19
19
uses : shivammathur/setup-php@v2
25
25
26
26
- name : Checkout Laravel 8 Sample
27
27
if : matrix.laravel == 8
28
- uses : actions/checkout@v2
28
+ uses : actions/checkout@v3
29
29
with :
30
30
repository : codeception/laravel-module-tests
31
31
path : framework-tests
36
36
run : echo "::set-output name=dir::$(composer config cache-files-dir)"
37
37
38
38
- name : Cache composer dependencies
39
- uses : actions/cache@v2.1.3
39
+ uses : actions/cache@v3
40
40
with :
41
41
path : ${{ steps.composer-cache.outputs.dir }}
42
42
key : ${{ runner.os }}-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}
64
64
working-directory : framework-tests
65
65
66
66
- name : Run test suite
67
- run : php vendor/bin/codecept run Functional -c framework-tests
67
+ run : php vendor/bin/codecept run Functional -c framework-tests
You can’t perform that action at this time.
0 commit comments