Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 17 additions & 7 deletions .github/workflows/ci-static-analysis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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"
Expand All @@ -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
Expand Down
Loading