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 e5a4854Copy full SHA for e5a4854
.github/workflows/build-ci.yml
@@ -23,6 +23,10 @@ jobs:
23
- '8.1'
24
- '8.2'
25
- '8.3'
26
+ include:
27
+ - php: '8.1'
28
+ mongodb: '4.4'
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