Skip to content

Commit f6fc1f5

Browse files
authored
Merge pull request #27 from lolli42/lolli-1
2 parents e157edd + d287575 commit f6fc1f5

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/tests.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
php: ['5.3', '5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1']
12+
php: ['5.3', '5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2']
1313

1414
steps:
1515
- uses: actions/checkout@v2
@@ -28,7 +28,13 @@ jobs:
2828
find src/ tests/ -name '*.php' -print0 | xargs -0 -n1 -P4 php -dxdebug.mode=off -l >/dev/null
2929
3030
- name: Install dependencies
31+
if: ${{ matrix.php <= '8.1' }}
3132
run: composer update
3233

34+
- name: Install dependencies PHP 8.2
35+
# @todo: Needed until prophecy (req by phpunit) allows PHP 8.2, https://github.com/phpspec/prophecy/issues/556
36+
if: ${{ matrix.php > '8.1' }}
37+
run: composer update --ignore-platform-req=php+
38+
3339
- name: Run test suite
3440
run: vendor/bin/phpunit

0 commit comments

Comments
 (0)