Skip to content

Commit f396195

Browse files
authored
Merge pull request #7 from dereuromark/cov
Check coverage
2 parents 606d787 + 615bb09 commit f396195

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
if [[ ${{ matrix.db-type }} == 'sqlite' ]]; then export DB_URL='sqlite:///:memory:'; fi
6969
if [[ ${{ matrix.db-type }} == 'mysql' ]]; then export DB_URL='mysql://root:[email protected]/cakephp'; fi
7070
if [[ ${{ matrix.db-type }} == 'pgsql' ]]; then export DB_URL='postgres://postgres:[email protected]/postgres'; fi
71-
if [[ ${{ matrix.php-version }} == '7.3' && ${{ matrix.db-type }} == 'sqlite' ]]; then
71+
if [[ ${{ matrix.php-version }} == '7.3' ]]; then
7272
vendor/bin/phpunit --coverage-clover=coverage.xml
7373
else
7474
vendor/bin/phpunit
@@ -77,7 +77,7 @@ jobs:
7777
run: if ${{ matrix.prefer-lowest == 'prefer-lowest' }}; then vendor/bin/validate-prefer-lowest -m; fi
7878

7979
- name: Code Coverage Report
80-
if: success() && matrix.php-version == '7.3' && matrix.db-type == 'sqlite'
80+
if: success() && matrix.php-version == '7.3'
8181
uses: codecov/codecov-action@v1
8282

8383
validation:

0 commit comments

Comments
 (0)