From 7c0f26f2a84cc7ce33f34810b465475586b301be Mon Sep 17 00:00:00 2001 From: Chris Kankiewicz Date: Fri, 29 Dec 2023 19:01:55 -0700 Subject: [PATCH] Updated CI to use 'composer install' --- .github/workflows/test-suite.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test-suite.yaml b/.github/workflows/test-suite.yaml index 3e26463..0809ecd 100644 --- a/.github/workflows/test-suite.yaml +++ b/.github/workflows/test-suite.yaml @@ -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