From acf48da0031673e23f235865ba2fe9578b099a9d Mon Sep 17 00:00:00 2001 From: Natan Felles Date: Tue, 5 Dec 2023 14:50:26 -0300 Subject: [PATCH] Run phpunit without --verbose option --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d6b4be7..1dfb2fd 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -48,7 +48,7 @@ jobs: vendor/bin/phpstan analyse -vvv - name: PHPUnit - run: vendor/bin/phpunit --verbose + run: vendor/bin/phpunit - name: Upload coverage results to Coveralls env: @@ -84,4 +84,4 @@ jobs: composer update - name: PHPUnit - run: vendor/bin/phpunit --verbose + run: vendor/bin/phpunit