From f30d3515e12b9a225de555b56445242c4d20c9ff Mon Sep 17 00:00:00 2001 From: Michael Wood Date: Thu, 7 May 2026 10:31:57 +0100 Subject: [PATCH] workflow Separate the workflow items for easier visibility This ensures that if any of the tests fail they aren't grouped under the same task. Fixes: https://github.com/dxw/wordpress-plugin-template/issues/15 --- .github/workflows/main.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ab83228..612b55a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -26,7 +26,9 @@ jobs: ${{ runner.os }}-composer- - name: Install dependencies run: composer install --no-interaction - - run: | - vendor/bin/php-cs-fixer fix --dry-run -v --diff - vendor/bin/kahlan - vendor/bin/psalm --find-unused-psalm-suppress + - name: Run php-cs-fixer checker + run: vendor/bin/php-cs-fixer fix --dry-run -v --diff + - name: Run kahlan tests + run: vendor/bin/kahlan + - name: Run psalm tests + run: vendor/bin/psalm --find-unused-psalm-suppress