diff options
author | Davey Shafik <davey@php.net> | 2020-10-27 07:51:20 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-27 07:51:20 +0000 |
commit | acca7495828d2c7cffdc825f99c5da450b0bfc45 (patch) | |
tree | fc54118cfb1d2e3c86d01921307fbed8ee5496bf | |
parent | 17117fa850ec16c066a6e8d7e5ec806a8b64f8ed (diff) | |
download | php7-mysql-shim-acca7495828d2c7cffdc825f99c5da450b0bfc45.zip php7-mysql-shim-acca7495828d2c7cffdc825f99c5da450b0bfc45.tar.gz php7-mysql-shim-acca7495828d2c7cffdc825f99c5da450b0bfc45.tar.bz2 |
composer update to get the correct version of phpunit
-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 |