From 2f36fb235dc26945771bc1c5e096b31b9be3b763 Mon Sep 17 00:00:00 2001 From: Jonathan Hedstrom Date: Fri, 24 Mar 2023 12:38:20 -0700 Subject: [PATCH 1/2] Test on PHP 8.2 Closes #264 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5ec2adb..0a6557d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,7 +6,7 @@ jobs: strategy: fail-fast: false matrix: - php_version: ["7.4", "8.0", "8.1"] + php_version: ["7.4", "8.0", "8.1", "8.2"] drupal_version: ["9", "10"] exclude: - php_version: "7.4" From ebe1b10c2dd20ee6ad48ec22d0cff802805e9297 Mon Sep 17 00:00:00 2001 From: Jonathan Hedstrom Date: Fri, 24 Mar 2023 12:48:53 -0700 Subject: [PATCH 2/2] Exclude testing on PHP 8.2 and Drupal 9 --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0a6557d..a7906c0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,6 +13,8 @@ jobs: drupal_version: "10" - php_version: "8.0" drupal_version: "10" + - php_version: "8.2" + drupal_version: "9" env: PHP_VERSION: ${{ matrix.php_version }} DRUPAL_VERSION: ${{ matrix.drupal_version }}