Skip to content

Commit af77b31

Browse files
committed
[TASK] Test PHP 8.3 and 8.4
Also drop prophecy workarounds since PHP 8.2 compatibility has been enabled upstream.
1 parent 47ea85c commit af77b31

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
php: ['7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2']
12+
php: ['7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
1313

1414
steps:
1515
- uses: actions/checkout@v2
@@ -28,13 +28,7 @@ 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' }}
3231
run: composer update
3332

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-
3933
- name: Run test suite
4034
run: vendor/bin/phpunit

0 commit comments

Comments
 (0)