Skip to content

fix build #648

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 17, 2025
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