From 2ab2e1fc0f3784d902cea1ba80e06a76c9c2c53f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20Sz=C3=A9pe?= Date: Mon, 14 Apr 2025 20:11:54 +0200 Subject: [PATCH] Execute tests when we need no coverage --- .github/workflows/main.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 094e131..7a43538 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -27,6 +27,11 @@ jobs: - name: Install dependencies run: composer update --no-interaction + - name: Execute tests + if: ${{ ! matrix.coverage }} + run: | + ./vendor/bin/phpunit --testdox + - name: Upload the reports to codeclimate if: ${{ matrix.coverage }} env: