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 f90e1f0 commit db72598Copy full SHA for db72598
.github/workflows/checks.yml
@@ -26,13 +26,16 @@ jobs:
26
run: composer run phpstan
27
28
tests:
29
- name: PHP ${{ matrix.php }} tests on ${{ matrix.os }}
+ name: PHP ${{ matrix.php }} tests on ${{ matrix.os }} with ${{ matrix.deps }} deps
30
31
needs:
32
- static_analysis
33
34
strategy:
35
matrix:
36
+ deps:
37
+ - stable
38
+ - lowest
39
os:
40
- macos-latest
41
- ubuntu-latest
@@ -57,6 +60,9 @@ jobs:
57
60
58
61
- run: composer install --ansi --no-progress --prefer-dist
59
62
63
+ - run: composer update --ansi --no-progress --prefer-lowest
64
+ if: matrix.deps == 'lowest'
65
+
66
- name: Run tests
67
run: composer run test
68
0 commit comments