From e354dcd8013185cac8672a108214db3dab2d4027 Mon Sep 17 00:00:00 2001 From: Markus Podar Date: Wed, 21 Feb 2024 10:53:25 +0100 Subject: [PATCH] gha: always make xdebug available Fixes the following phpunit warning for now (which fails the workflow): > `No code coverage driver available` We still only upload the coverage when explicitly enabled. --- .github/workflows/phpunit.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml index a5e5b5fc..f16ef495 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/phpunit.yml @@ -91,7 +91,7 @@ jobs: with: php-version: ${{ matrix.php }} extensions: mbstring json openssl - coverage: ${{ matrix.coverage }} + coverage: xdebug ini-values: memory_limit=-1 - name: Setup Problem Matchers