We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39aa211 commit acdf5a1Copy full SHA for acdf5a1
.github/workflows/ci.yml
@@ -25,7 +25,7 @@ jobs:
25
- uses: shivammathur/setup-php@v2
26
with:
27
php-version: ${{ matrix.php }}
28
- coverage: xdebug
+ coverage: ${{ matrix.php < 8.4 && 'xdebug' || 'xdebug-stable' }} # temporarily skip Xdebug on PHP 8.4 due to segfault
29
ini-file: development
30
- run: composer install
31
- run: docker run --net=host -d redis
@@ -34,6 +34,7 @@ jobs:
34
- run: REDIS_URI=localhost:6379 vendor/bin/phpunit --coverage-text --coverage-clover=clover.xml -c phpunit.xml.legacy
35
if: ${{ matrix.php < 7.3 }}
36
- name: Check 100% code coverage
37
+ if: ${{ matrix.php < 8.4 }} # temporarily skip on PHP 8.4 due to Xdebug segfault
38
shell: php {0}
39
run: |
40
<?php
0 commit comments