diff options
Diffstat (limited to '.github/workflows/phpunit.yaml')
-rw-r--r-- | .github/workflows/phpunit.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/phpunit.yaml b/.github/workflows/phpunit.yaml index e5336a4..9c47357 100644 --- a/.github/workflows/phpunit.yaml +++ b/.github/workflows/phpunit.yaml @@ -41,6 +41,6 @@ jobs: restore-keys: ${{ runner.os }}-composer- - name: Install Composer dependencies run: | - composer update --prefer-lowest --no-interaction --prefer-source + composer update --no-interaction --prefer-source - name: Run Tests - run: php bin/phpunit --coverage-text + run: composer run test -- --coverage-text |