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