From c574983076ecae61184ebd217fe4dba043d475aa Mon Sep 17 00:00:00 2001 From: Larry Garfield Date: Wed, 14 Aug 2024 10:06:21 -0500 Subject: [PATCH] Split up CS-Fixer and PHPUnit so CS-Fixer doesn't run on every PHP version. --- .github/workflows/ci.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 08fb7e4..3ab6c2a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,5 +18,12 @@ jobs: run: | sudo chmod -R 777 vendor/pestphp/pest/.temp vendor/bin/pest - - name: Run CS-Fixer - run: vendor/bin/php-cs-fixer check + + build-code-style: + name: PHP-CS-Fixer checks + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: php-actions/composer@v6 + - name: Run CS-Fixer + run: vendor/bin/php-cs-fixer check