Skip to content
Merged
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
15 changes: 7 additions & 8 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,11 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: Pull in optional dependencies
run: composer require --no-update jean-beru/fos-http-cache-cloudfront twig/twig symfony/console phpstan/phpstan-symfony
- name: Pull in optional dependencies and install vendors
run: composer require jean-beru/fos-http-cache-cloudfront twig/twig symfony/console

- name: PHPStan
uses: docker://oskarstark/phpstan-ga
with:
args: analyze --no-progress
run: vendor/bin/phpstan analyze --no-progress

phpstan-tests:
name: PHPStan tests
Expand All @@ -33,10 +31,11 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: Install vendors
run: composer install

- name: PHPStan
uses: docker://oskarstark/phpstan-ga
with:
args: analyze --no-progress -c phpstan.tests.neon.dist
run: vendor/bin/phpstan analyze --no-progress -c phpstan.tests.neon.dist

php-cs-fixer:
name: PHP-CS-Fixer
Expand Down
Loading