File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change 9
9
jobs :
10
10
build :
11
11
runs-on : ${{ matrix.os }}
12
- name : PHP v${{ matrix.php }} with MongoDB ${{ matrix.mongodb }}
12
+ name : PHP v${{ matrix.php }} with MongoDB ${{ matrix.mongodb }} ${{ matrix.mode }}
13
13
strategy :
14
14
matrix :
15
15
os :
23
23
- ' 8.1'
24
24
- ' 8.2'
25
25
- ' 8.3'
26
+ include :
27
+ - php : ' 8.1'
28
+ mongodb : ' 4.4'
29
+ mode : ' low-deps'
26
30
27
31
steps :
28
32
- uses : actions/checkout@v4
63
67
restore-keys : ${{ matrix.os }}-composer-
64
68
- name : Install dependencies
65
69
run : |
66
- composer install --no-interaction
70
+ composer update --no-interaction $([[ "${{ matrix.mode }}" == low-deps ]] && echo ' --prefer-lowest --prefer-stable')
67
71
- name : Run tests
68
72
run : |
69
73
./vendor/bin/phpunit --coverage-clover coverage.xml
You can’t perform that action at this time.
0 commit comments