Skip to content

Commit 508dfc6

Browse files
committed
ci: fix dependency version on PHP7
1 parent facba40 commit 508dfc6

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/ci.yml

+5
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ jobs:
1111
strategy:
1212
matrix:
1313
php: ['7.4', '8.0']
14+
include:
15+
- php: '7.4'
16+
dependency-versions: 'highest'
1417

1518
steps:
1619
- uses: actions/checkout@v2
@@ -19,6 +22,8 @@ jobs:
1922
with:
2023
php-version: ${{ matrix.php }}
2124
- uses: ramsey/composer-install@v1
25+
with:
26+
dependency-versions: ${{ matrix.dependency-versions }}
2227

2328
- run: composer lint
2429
- run: composer test

0 commit comments

Comments
 (0)