File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -30,11 +30,11 @@ jobs:
30
30
- php : " 8.1"
31
31
laravel : " 10.*"
32
32
mongodb : " 5.0"
33
- mode : " --prefer-lowest "
33
+ mode : " low-deps "
34
34
- php : " 8.4"
35
35
laravel : " 11.*"
36
36
mongodb : " 7.0"
37
- mode : " -- ignore-platform-reqs "
37
+ mode : " ignore-php-req "
38
38
exclude :
39
39
- php : " 8.1"
40
40
laravel : " 11.*"
84
84
restore-keys : " ${{ matrix.os }}-composer-"
85
85
86
86
- name : " Install dependencies"
87
- run : composer update --no-interaction ${{ matrix.mode }}
87
+ run : composer update --no-interaction \
88
+ $([[ "${{ matrix.mode }}" == low-deps ]] && echo ' --prefer-lowest') \
89
+ $([[ "${{ matrix.mode }}" == ignore-php-req ]] && echo ' --ignore-platform-req=php+')
88
90
- name : " Run tests"
89
91
run : " ./vendor/bin/phpunit --coverage-clover coverage.xml"
90
92
env :
You can’t perform that action at this time.
0 commit comments