File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 14
14
fail-fast : false
15
15
matrix :
16
16
php-versions : ['8.2', '8.3', '8.4']
17
+ dependency-version : [lowest, highest]
17
18
18
19
steps :
19
20
- uses : actions/checkout@v3
@@ -26,15 +27,15 @@ jobs:
26
27
27
28
- name : Cache Composer packages
28
29
id : composer-cache
29
- uses : actions/cache@v3
30
+ uses : actions/cache@v4
30
31
with :
31
32
path : vendor
32
- key : ${{ runner.os }}-php- ${{ matrix.php-versions }}-${{ hashFiles('**/composer.lock') }}
33
+ key : ${{ runner.os }}-${{ matrix.dependency-version }}-${{ hashFiles('**/composer.lock') }}
33
34
restore-keys : |
34
35
${{ runner.os }}-php-
35
36
36
37
- name : Install dependencies
37
- run : composer install --prefer-dist --no-progress
38
+ run : composer update --${{ matrix.dependency-version }} -- prefer-dist --no-interaction
38
39
39
40
- name : Check coding standard
40
41
run : vendor/bin/phpcs -p
You can’t perform that action at this time.
0 commit comments