From b3248d5433bb16364e730b73b1dd238083462cbb Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Tue, 5 Nov 2024 14:13:25 +0100 Subject: [PATCH] [TASK] Prepare for non-PHP-checks on CI Following this change in Emogrifier and preparing for the addition of composer-normalize: https://github.com/MyIntervals/emogrifier/pull/1363 --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 960f491a2..622bb17b9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -103,9 +103,9 @@ jobs: fail-fast: false matrix: command: - - fixer - - stan - - rector + - php:fixer + - php:stan + - php:rector php-version: - '8.3' @@ -142,4 +142,4 @@ jobs: phive --no-progress install --trust-gpg-keys BBAB5DF0A0D6672989CF1869E82B2FB314E9906E - name: Run Command - run: composer ci:php:${{ matrix.command }} + run: composer ci:${{ matrix.command }}