Updated CI to use 'composer install'

This commit is contained in:
Chris Kankiewicz
2023-12-29 19:01:55 -07:00
parent d5fbb65b95
commit 7c0f26f2a8

View File

@@ -35,7 +35,7 @@ jobs:
uses: actions/checkout@v2
- name: Install PHP Dependencies
run: composer update
run: composer install --no-interaction --no-progress --no-scripts --prefer-dist
- name: Verify Coding Standards
run: app/vendor/bin/php-cs-fixer fix --diff --dry-run
@@ -49,7 +49,7 @@ jobs:
uses: actions/checkout@v2
- name: Install PHP Dependencies
run: composer update
run: composer install --no-interaction --no-progress --no-scripts --prefer-dist
- name: Run Static Analysis
run: app/vendor/bin/phpstan
@@ -92,7 +92,7 @@ jobs:
restore-keys: ${{ runner.os }}-composer-
- name: Install PHP Dependencies
run: composer update
run: composer install --no-interaction --no-progress --no-scripts --prefer-dist
- name: Run Tests
run: app/vendor/bin/phpunit --coverage-text