We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd6f1c3 commit 1a49980Copy full SHA for 1a49980
.github/workflows/build-ci.yml
@@ -9,7 +9,7 @@ on:
9
jobs:
10
build:
11
runs-on: ${{ matrix.os }}
12
- name: PHP v${{ matrix.php }} with MongoDB ${{ matrix.mongodb }}
+ name: PHP v${{ matrix.php }} with MongoDB ${{ matrix.mongodb }} ${{ matrix.mode }}
13
strategy:
14
matrix:
15
os:
@@ -23,6 +23,10 @@ jobs:
23
- '8.1'
24
- '8.2'
25
- '8.3'
26
+ include:
27
+ - php: '8.1'
28
+ mongodb: '5.0'
29
+ mode: 'low-deps'
30
31
steps:
32
- uses: actions/checkout@v4
@@ -63,7 +67,7 @@ jobs:
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')
71
- name: Run tests
72
73
./vendor/bin/phpunit --coverage-clover coverage.xml
0 commit comments