From 35b89760c78a2fb97ab08392a7da420a780254ba Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Fri, 22 Mar 2024 17:01:42 +0100 Subject: [PATCH] Disable Xdebug on CI As long as we are not collection code coverage data, we can avoid loading Xdebug and avoid the (albeit small) performance penalty. --- .github/workflows/php.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 4707452..8bbd613 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -32,7 +32,7 @@ jobs: uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php-version }} - coverage: xdebug + coverage: none tools: pecl extensions: curl,fileinfo,zip