From f18f8f1ac06d910aeaebdc70eefc03b96552a0ea Mon Sep 17 00:00:00 2001 From: Claudiu Cristea Date: Sat, 2 Nov 2024 10:07:16 +0200 Subject: [PATCH] Update Drupal versions --- .github/workflows/ci.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fc82b8f..ec6b0a3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,8 +9,13 @@ jobs: strategy: fail-fast: false matrix: - php_version: ["8.1", "8.2"] - drupal_version: ["~10.0", "~10.1"] + php_version: ["8.1", "8.2", "8.3"] + drupal_version: ["^10.3", "^11"] + exclude: + - drupal_version: "^11" + php_version: "8.1" + - drupal_version: "^11" + php_version: "8.2" env: PHP_VERSION: ${{ matrix.php_version }} DRUPAL_VERSION: ${{ matrix.drupal_version }}