Skip to content

Commit

Permalink
Updated composer install command in test suite
Browse files Browse the repository at this point in the history
  • Loading branch information
PHLAK committed Dec 4, 2024
1 parent bc42497 commit 9b97e40
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test-suite.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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

0 comments on commit 9b97e40

Please sign in to comment.