From b2f285651f0f18c4a30617ce39c847a1d7990026 Mon Sep 17 00:00:00 2001 From: Fabian Grutschus Date: Wed, 24 Jan 2024 11:57:42 +0100 Subject: [PATCH] Remove --verbose --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d01ecaf..ff2841a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -59,11 +59,11 @@ jobs: - name: Run test suite if: ${{ ! matrix.php.coverage }} - run: ./vendor/bin/phpunit --verbose + run: ./vendor/bin/phpunit - name: Run test suite with code coverage if: ${{ matrix.php.coverage }} - run: ./vendor/bin/phpunit --verbose --coverage-clover=build/logs/clover.xml + run: ./vendor/bin/phpunit --coverage-clover=build/logs/clover.xml env: XDEBUG_MODE: coverage