From e319c78fd1f8890a27280cb9748db5b3b3e61a68 Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Wed, 6 Jan 2021 13:06:39 +0100 Subject: [PATCH] [BUGFIX] Disable Xdebug in the CI build (#185) This avoid problems with Xdebug 3 (the version that now automatically gets installed). It also should speed up the build a bit. --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f049c42..bcbdb98 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,6 +20,7 @@ jobs: uses: shivammathur/setup-php@v2 with: php-version: "${{ matrix.php-version }}" + coverage: none tools: composer:v2 - name: "Run PHP lint" run: "composer ci:php:lint" @@ -39,6 +40,7 @@ jobs: uses: shivammathur/setup-php@v2 with: php-version: "${{ matrix.php-version }}" + coverage: none tools: composer:v2 - name: "Show Composer version" run: composer --version @@ -104,6 +106,7 @@ jobs: uses: shivammathur/setup-php@v2 with: php-version: "${{ matrix.php-version }}" + coverage: none tools: composer:v2 - name: "Show Composer version" run: composer --version @@ -156,6 +159,7 @@ jobs: php-version: "${{ matrix.php-version }}" tools: composer:v2 extensions: mysqli + coverage: none - name: "Show Composer version" run: composer --version - name: "Cache dependencies installed with composer"