From bbf19a7fbe5254129f42fcbd74e7afc1b78ecd08 Mon Sep 17 00:00:00 2001 From: Wilmer Arambula Date: Wed, 20 Mar 2024 07:06:05 -0300 Subject: [PATCH] Add tests for PHP `8.4`. --- .github/workflows/build.yml | 2 +- .github/workflows/ci-mssql.yml | 15 +++------------ .github/workflows/ci-mysql.yml | 14 +++----------- .github/workflows/ci-pgsql.yml | 18 +++--------------- .github/workflows/ci-sqlite.yml | 9 ++------- 5 files changed, 12 insertions(+), 46 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ad632e4c7ca..08316c0f125 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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. diff --git a/.github/workflows/ci-mssql.yml b/.github/workflows/ci-mssql.yml index 74a46ade0ad..5a91d8c6e48 100644 --- a/.github/workflows/ci-mssql.yml +++ b/.github/workflows/ci-mssql.yml @@ -19,18 +19,9 @@ 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: [server:2017-latest, server:2019-latest, server:2022-latest] services: mssql: diff --git a/.github/workflows/ci-mysql.yml b/.github/workflows/ci-mysql.yml index 034293fed70..b7da4bbc5d1 100644 --- a/.github/workflows/ci-mysql.yml +++ b/.github/workflows/ci-mysql.yml @@ -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: diff --git a/.github/workflows/ci-pgsql.yml b/.github/workflows/ci-pgsql.yml index 7b9506007e1..3d039a0ae10 100644 --- a/.github/workflows/ci-pgsql.yml +++ b/.github/workflows/ci-pgsql.yml @@ -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: diff --git a/.github/workflows/ci-sqlite.yml b/.github/workflows/ci-sqlite.yml index b7857e85249..c2e2d364ad2 100644 --- a/.github/workflows/ci-sqlite.yml +++ b/.github/workflows/ci-sqlite.yml @@ -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.