From e386675a4082cde0d6a68420e6ac8bdaf3d9880a Mon Sep 17 00:00:00 2001 From: jrfnl Date: Sun, 8 Aug 2021 02:07:31 +0200 Subject: [PATCH] GH Actions: explicitly set code coverage to none As no code coverage is being recorded for these builds, it is good practice to explicitly set `coverage: none` in `setup-php`. This fixes a warning on PHP 5.3 stating that Xdebug is on. --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9178b5c..7f6b5e7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,6 +22,7 @@ jobs: extensions: mbstring, intl ini-values: post_max_size=256M, max_execution_time=180 tools: psalm, phpunit:${{ matrix.phpunit-versions }} + coverage: none - name: Install dependencies run: composer self-update --1; composer install @@ -50,6 +51,7 @@ jobs: extensions: mbstring, intl, sodium ini-values: post_max_size=256M, max_execution_time=180 tools: psalm, phpunit:${{ matrix.phpunit-versions }} + coverage: none - name: Install dependencies run: composer install @@ -82,6 +84,7 @@ jobs: extensions: mbstring, intl, sodium ini-values: post_max_size=256M, max_execution_time=180 tools: psalm, phpunit:${{ matrix.phpunit-versions }} + coverage: none - name: Install dependencies run: composer install