From 8c2bcaf59d139cfa62ae6b11e4e2fd6282f956e6 Mon Sep 17 00:00:00 2001 From: Ankit Pathak <106175376+apathak18@users.noreply.github.com> Date: Sun, 16 Jun 2024 17:27:58 +0530 Subject: [PATCH] Update github workflow to ready for drupal next minor and major version. --- .github/workflows/testing.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 063e6515f..c64205ada 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -14,17 +14,23 @@ jobs: fail-fast: false matrix: php-versions: ['8.1', '8.2'] - drupal-core: ['10.2.x'] - phpstan: ['0'] + drupal-core: ['10.2.x', '10.3.x', '11.0.x'] + phpstan: ['1'] include: # Extra run to test older supported Drupal 10.1.x. - php-versions: '8.1' drupal-core: '10.1.x' phpstan: '0' - # We only need to run PHPStan once on the latest PHP version. + # We only need to run PHPStan once on the latest PHP version with next minor and major drupal version. - php-versions: '8.3' drupal-core: '10.2.x' phpstan: '1' + - php-versions: '8.3' + drupal-core: '10.3.x' + phpstan: '1' + - php-versions: '8.3' + drupal-core: '11.0.x' + phpstan: '1' steps: - name: Checkout Drupal core uses: actions/checkout@v4