File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 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
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 :
You can’t perform that action at this time.
0 commit comments