diff --git a/.github/workflows/ci-static-analysis.yaml b/.github/workflows/ci-static-analysis.yaml index 3f3fb5aba..1214bd2f5 100644 --- a/.github/workflows/ci-static-analysis.yaml +++ b/.github/workflows/ci-static-analysis.yaml @@ -13,8 +13,22 @@ env: SYMFONY_PHPUNIT_DIR: "$HOME/symfony-bridge/.phpunit" jobs: - coding-standards: - name: "Coding Standards" + composer-validate: + name: "Validate composer.json" + + runs-on: ubuntu-latest + + steps: + - + name: Checkout code + uses: "actions/checkout@v4" + + - + name: Validate composer.json + run: "composer validate --strict --no-check-lock" + + php-cs-fixer: + name: "PHP-CS-Fixer" runs-on: ubuntu-latest @@ -29,10 +43,6 @@ jobs: with: php-version: 8.2 - - - name: Validate composer.json - run: "composer validate --strict --no-check-lock" - - name: Composer install uses: "ramsey/composer-install@v3" @@ -47,7 +57,7 @@ jobs: - name: Run PHP-CS-Fixer - run: "tools/php-cs-fixer/vendor/bin/php-cs-fixer fix --dry-run --diff" + run: "tools/php-cs-fixer/vendor/bin/php-cs-fixer fix --dry-run --diff --show-progress=none" phpstan: name: PHPStan