Skip to content

Commit 4368aed

Browse files
committed
Add PHP 8.4 tests
1 parent a578d82 commit 4368aed

File tree

2 files changed

+20
-2
lines changed

2 files changed

+20
-2
lines changed

.github/workflows/test-phpunit.yml

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,28 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
php: [ '8.3', '8.2', '8.1', '8.0', '7.4']
15+
php: ['8.4', '8.3', '8.2', '8.1', '8.0', '7.4']
1616
DB: [ 'pdo/mysql', 'pdo/pgsql', 'pdo/sqlite', 'mysqli', 'pgsql', 'sqlite' ]
1717
compiler: [ default ]
1818
include:
19+
- php: '8.4'
20+
DB: 'pdo/mysql'
21+
compiler: jit
22+
- php: '8.4'
23+
DB: 'pdo/pgsql'
24+
compiler: jit
25+
- php: '8.4'
26+
DB: 'pdo/sqlite'
27+
compiler: jit
28+
- php: '8.4'
29+
DB: 'mysqli'
30+
compiler: jit
31+
- php: '8.4'
32+
DB: 'pgsql'
33+
compiler: jit
34+
- php: '8.4'
35+
DB: 'sqlite'
36+
compiler: jit
1937
- php: '8.3'
2038
DB: 'pdo/mysql'
2139
compiler: jit

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@
3131
},
3232
"require-dev": {
3333
"mikey179/vfsstream": "1.6.*",
34-
"phpunit/phpunit": "^9.6"
34+
"phpunit/phpunit": "9.* || 10.* || 11.*"
3535
}
3636
}

0 commit comments

Comments
 (0)