Skip to content

Commit db72598

Browse files
committed
Test also with lowest dependencies
1 parent f90e1f0 commit db72598

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/checks.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,16 @@ jobs:
2626
run: composer run phpstan
2727

2828
tests:
29-
name: PHP ${{ matrix.php }} tests on ${{ matrix.os }}
29+
name: PHP ${{ matrix.php }} tests on ${{ matrix.os }} with ${{ matrix.deps }} deps
3030

3131
needs:
3232
- static_analysis
3333

3434
strategy:
3535
matrix:
36+
deps:
37+
- stable
38+
- lowest
3639
os:
3740
- macos-latest
3841
- ubuntu-latest
@@ -57,6 +60,9 @@ jobs:
5760

5861
- run: composer install --ansi --no-progress --prefer-dist
5962

63+
- run: composer update --ansi --no-progress --prefer-lowest
64+
if: matrix.deps == 'lowest'
65+
6066
- name: Run tests
6167
run: composer run test
6268

0 commit comments

Comments
 (0)