Skip to content

Commit 28cbf6c

Browse files
Add tests for PHP 8.4. (#20132)
1 parent e2a1670 commit 28cbf6c

File tree

6 files changed

+16
-44
lines changed

6 files changed

+16
-44
lines changed

.github/workflows/build.yml

+4
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,10 @@ jobs:
6969
extensions: apcu, curl, dom, imagick, intl, mbstring, mcrypt, memcached
7070
coverage: none
7171
os: ubuntu-latest
72+
- php: 8.4
73+
extensions: apcu, curl, dom, imagick, intl, mbstring, mcrypt, memcached
74+
coverage: none
75+
os: ubuntu-latest
7276

7377
steps:
7478
- name: Generate french locale.

.github/workflows/ci-mssql.yml

+2
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ jobs:
3131
mssql: server:2022-latest
3232
- php: 8.3
3333
mssql: server:2022-latest
34+
- php: 8.4
35+
mssql: server:2022-latest
3436

3537
services:
3638
mssql:

.github/workflows/ci-mysql.yml

+3-13
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,9 @@ jobs:
1919

2020
strategy:
2121
matrix:
22-
os:
23-
- ubuntu-latest
24-
25-
php:
26-
- 7.4
27-
- 8.0
28-
- 8.1
29-
- 8.2
30-
- 8.3
31-
32-
mysql:
33-
- 5.7
34-
- latest
22+
os: [ubuntu-latest]
23+
php: [7.4, 8.0, 8.1, 8.2, 8.3, 8.4]
24+
mysql: [5.7, latest]
3525

3626
services:
3727
mysql:

.github/workflows/ci-oracle.yml

+2-5
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,8 @@ jobs:
2020

2121
strategy:
2222
matrix:
23-
os:
24-
- ubuntu-latest
25-
26-
php:
27-
- 7.4
23+
os: [ubuntu-latest]
24+
php: [7.4]
2825

2926
services:
3027
oci:

.github/workflows/ci-pgsql.yml

+3-17
Original file line numberDiff line numberDiff line change
@@ -19,23 +19,9 @@ jobs:
1919

2020
strategy:
2121
matrix:
22-
os:
23-
- ubuntu-latest
24-
25-
php:
26-
- 7.4
27-
- 8.0
28-
- 8.1
29-
- 8.2
30-
- 8.3
31-
32-
pgsql:
33-
- 10
34-
- 11
35-
- 12
36-
- 13
37-
- 14
38-
- 15
22+
os: [ubuntu-latest]
23+
php: [7.4, 8.0, 8.1, 8.2, 8.3, 8.4]
24+
pgsql: [10, 11, 12, 13, 14, 15]
3925

4026
services:
4127
postgres:

.github/workflows/ci-sqlite.yml

+2-9
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,8 @@ jobs:
2020

2121
strategy:
2222
matrix:
23-
os:
24-
- ubuntu-latest
25-
26-
php:
27-
- 7.4
28-
- 8.0
29-
- 8.1
30-
- 8.2
31-
- 8.3
23+
os: [ubuntu-latest]
24+
php: [7.4, 8.0, 8.1, 8.2, 8.3, 8.4]
3225

3326
steps:
3427
- name: Checkout.

0 commit comments

Comments
 (0)