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 99jobs :
1010 build :
1111 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 }}
1313 strategy :
1414 matrix :
1515 os :
2323 - ' 8.1'
2424 - ' 8.2'
2525 - ' 8.3'
26+ include :
27+ - php : ' 8.1'
28+ mongodb : ' 4.4'
29+ mode : ' low-deps'
2630
2731 steps :
2832 - uses : actions/checkout@v4
6367 restore-keys : ${{ matrix.os }}-composer-
6468 - name : Install dependencies
6569 run : |
66- composer install --no-interaction
70+ composer update --no-interaction $([[ "${{ matrix.mode }}" == low-deps ]] && echo ' --prefer-lowest --prefer-stable')
6771 - name : Run tests
6872 run : |
6973 ./vendor/bin/phpunit --coverage-clover coverage.xml
You can’t perform that action at this time.
0 commit comments