diff --git a/.github/workflows/test-suite.yaml b/.github/workflows/test-suite.yaml index cfd3b97..749c45b 100644 --- a/.github/workflows/test-suite.yaml +++ b/.github/workflows/test-suite.yaml @@ -19,7 +19,7 @@ jobs: php-version: 8.4 - name: Install PHP Dependencies - run: composer install + run: composer install --no-interaction --no-progress --no-scripts --prefer-dist - name: Verify Coding Standards run: vendor/bin/php-cs-fixer fix --diff --dry-run @@ -38,7 +38,7 @@ jobs: php-version: 8.4 - name: Install PHP Dependencies - run: composer install + run: composer install --no-interaction --no-progress --no-scripts --prefer-dist - name: Run Static Analysis run: vendor/bin/phpstan analyze @@ -62,7 +62,7 @@ jobs: coverage: xdebug - name: Install PHP Dependencies - run: composer install + run: composer install --no-interaction --no-progress --no-scripts --prefer-dist - name: Run Tests run: vendor/bin/phpunit --coverage-text