From 1cf4bea396766a4c520cb5eb0b370566a7fbecc2 Mon Sep 17 00:00:00 2001 From: Ambroise Maupate Date: Mon, 1 Jul 2024 19:41:22 +0200 Subject: [PATCH] chore: run test syntax --- .github/workflows/run-test.yml | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run-test.yml b/.github/workflows/run-test.yml index 0a78ec0..a661425 100644 --- a/.github/workflows/run-test.yml +++ b/.github/workflows/run-test.yml @@ -36,6 +36,6 @@ jobs: - name: Run PHP Code Sniffer run: vendor/bin/phpcs -p ./src - name: Run unit tests - run: vendor/bin/phpunit -v + run: vendor/bin/phpunit - name: Run PHPStan run: vendor/bin/phpstan analyse --no-progress -c phpstan.neon diff --git a/Makefile b/Makefile index eadc438..fc965ba 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ test: php vendor/bin/phpcbf -p - XDEBUG_MODE=coverage vendor/bin/phpunit -v + php vendor/bin/phpunit php vendor/bin/phpstan analyse -c phpstan.neon