Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add tests for PHP 8.4 branch 2.2. #20131

Draft
wants to merge 2 commits into
base: 2.2
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
php: [8.1, 8.2, 8.3]
php: [8.1, 8.2, 8.3, 8.4]

steps:
- name: Generate french locale.
Expand Down
17 changes: 4 additions & 13 deletions .github/workflows/ci-mssql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,22 +19,13 @@ jobs:

strategy:
matrix:
os:
- ubuntu-latest

php:
- 8.1
- 8.2
- 8.3

mssql:
- server:2017-latest
- server:2019-latest
- server:2022-latest
os: [ubuntu-latest]
php: [8.1, 8.2, 8.3, 8.4]
mssql: [2017-latest, 2019-latest, 2022-latest]

services:
mssql:
image: mcr.microsoft.com/mssql/${{ matrix.mssql }}
image: mcr.microsoft.com/mssql/server:${{ matrix.mssql }}
env:
SA_PASSWORD: YourStrong!Passw0rd
ACCEPT_EULA: Y
Expand Down
14 changes: 3 additions & 11 deletions .github/workflows/ci-mysql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,9 @@ jobs:

strategy:
matrix:
os:
- ubuntu-latest

php:
- 8.1
- 8.2
- 8.3

mysql:
- 5.7
- latest
os: [ubuntu-latest]
php: [8.1, 8.2, 8.3, 8.4]
mysql: [5.7, latest]

services:
mysql:
Expand Down
18 changes: 3 additions & 15 deletions .github/workflows/ci-pgsql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,9 @@ jobs:

strategy:
matrix:
os:
- ubuntu-latest

php:
- 8.1
- 8.2
- 8.3

pgsql:
- 10
- 11
- 12
- 13
- 14
- 15
os: [ubuntu-latest]
php: [8.1, 8.2, 8.3, 8.4]
pgsql: [10, 11, 12, 13, 14, 15]

services:
postgres:
Expand Down
9 changes: 2 additions & 7 deletions .github/workflows/ci-sqlite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,8 @@ jobs:

strategy:
matrix:
os:
- ubuntu-latest

php:
- 8.1
- 8.2
- 8.3
os: [ubuntu-latest]
php: [8.1, 8.2, 8.3, 8.4]

steps:
- name: Checkout.
Expand Down
Loading