From c3fc37e6e14c0b7be52cc6ba6958059efe9c866c Mon Sep 17 00:00:00 2001 From: Konrad Abicht Date: Tue, 2 Apr 2024 13:30:55 +0200 Subject: [PATCH] updated workflow file --- .github/workflows/ContinuousIntegration.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ContinuousIntegration.yml b/.github/workflows/ContinuousIntegration.yml index bad5b1d..331f168 100644 --- a/.github/workflows/ContinuousIntegration.yml +++ b/.github/workflows/ContinuousIntegration.yml @@ -18,15 +18,15 @@ jobs: # Validate composer.json - name: Validate Composer files - runs: cd scripts && composer validate --no-check-all --strict + run: cd scripts && composer validate --no-check-all --strict # Setup PHP environment (install dependencies etc.) - name: Install Composer dependencies - runs: cd scripts && composer install --no-progress --no-suggest --prefer-dist --optimize-autoloader + run: cd scripts && composer install --no-progress --no-suggest --prefer-dist --optimize-autoloader # Static code analyser - name: Static Code Analysis - runs: cd scripts && vendor/bin/phpstan analyse + run: cd scripts && vendor/bin/phpstan analyse # CSV linter - name: Lint index.csv