Skip to content

Commit 682153a

Browse files
authored
Update ci.yml
1 parent 830f5ea commit 682153a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,12 @@ jobs:
6363
- name: Run PHPUnit
6464
run: |
6565
if [[ ${{ matrix.db-type }} == 'sqlite' ]]; then export DB_URL='sqlite:///:memory:'; fi
66-
if [[ ${{ matrix.db-type }} == 'mysql' ]]; then export DB_URL='mysql://root:[email protected]/cakephp'; fi
66+
if [[ ${{ matrix.db-type }} == 'mysql' ]]; then export DB_URL='mysql://root:[email protected]/cakephp?encoding=utf8'; fi
6767
if [[ ${{ matrix.db-type }} == 'pgsql' ]]; then export DB_URL='postgres://postgres:[email protected]/postgres'; fi
68-
if [[ ${{ matrix.php-version }} == '8.1' ]]; then
69-
export CODECOVERAGE=1 && vendor/bin/phpunit --stderr --coverage-clover=coverage.xml
68+
if [[ ${{ matrix.php-version }} == '7.4' ]]; then
69+
export CODECOVERAGE=1 && vendor/bin/phpunit --verbose --coverage-clover=coverage.xml
7070
else
71-
vendor/bin/phpunit --stderr
71+
vendor/bin/phpunit
7272
fi
7373
7474
- name: Submit code coverage

0 commit comments

Comments
 (0)