Skip to content

Commit d941b5b

Browse files
committed
update CI workflow to support PHP versions 8.3 and 8.4; add .phpunit.result.cache to .gitignore
1 parent f794100 commit d941b5b

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
php-version: ['8.1', '8.2']
16+
php-version: ['8.1', '8.2', '8.3', '8.4']
1717
db-type: [sqlite, mysql, pgsql]
1818
prefer-lowest: ['']
1919

@@ -67,7 +67,7 @@ jobs:
6767
if [[ ${{ matrix.db-type }} == 'sqlite' ]]; then export DB_URL='sqlite:///:memory:'; fi
6868
if [[ ${{ matrix.db-type }} == 'mysql' ]]; then export DB_URL='mysql://root:[email protected]/cakephp?encoding=utf8'; fi
6969
if [[ ${{ matrix.db-type }} == 'pgsql' ]]; then export DB_URL='postgres://postgres:[email protected]/postgres'; fi
70-
if [[ ${{ matrix.php-version }} == '8.1' ]]; then
70+
if [[ ${{ matrix.php-version }} == '8.3' ]]; then
7171
export CODECOVERAGE=1 && vendor/bin/phpunit --coverage-clover=coverage.xml
7272
else
7373
vendor/bin/phpunit

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@ tmp
99
pmip
1010
webroot/coverage
1111
.php_cs.cache
12+
.phpunit.result.cache

0 commit comments

Comments
 (0)