Updated command run for windows envs

This commit is contained in:
Alex Renoki 2020-08-14 20:01:31 +03:00
parent 92dd8f4f30
commit b140d1f182
1 changed files with 6 additions and 2 deletions

View File

@ -49,11 +49,15 @@ jobs:
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction --no-suggest
- name: Execute tests with Local driver
run: REPLICATION_DRIVER=local phpunit --coverage-text --coverage-clover=coverage_local.xml
run: phpunit --coverage-text --coverage-clover=coverage_local.xml
env:
REPLICATION_DRIVER: local
- name: Execute tests with Redis driver
run: REPLICATION_DRIVER=redis phpunit --coverage-text --coverage-clover=coverage_redis.xml
run: phpunit --coverage-text --coverage-clover=coverage_redis.xml
if: ${{ matrix.os == 'ubuntu-latest' }}
env:
REPLICATION_DRIVER: redis
- uses: codecov/codecov-action@v1
with: