From 5e17cb83920d2a6a627369e4d43d08d0b8f732da Mon Sep 17 00:00:00 2001 From: David Buchmann Date: Tue, 17 Jun 2025 11:13:35 +0200 Subject: [PATCH] fix build --- .github/workflows/static.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index 9eba0c4c..12264e02 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -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 @@ -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