Skip to content

Commit c254402

Browse files
authored
Add support for Drupal 11.2.x (#42)
1 parent 80fefc1 commit c254402

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
strategy:
2828
fail-fast: false
2929
matrix:
30-
drupal_version: ['10.3', '10.4', '10.5', '11.0', '11.1', '11.x']
30+
drupal_version: ['10.4', '10.5', '11.1', '11.2', '11.x']
3131

3232
steps:
3333
- name: Checkout
@@ -51,6 +51,6 @@ jobs:
5151
5252
- name: Run tests
5353
env:
54-
DRUPAL_VERSION: ${{ matrix.drupal_version == '11.x' && '11.2-dev' || matrix.drupal_version }}
54+
DRUPAL_VERSION: ${{ matrix.drupal_version == '11.x' && '11.3-dev' || matrix.drupal_version }}
5555
run: |
5656
bats tests

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,10 @@ phpstan-baseline:
9797
$(GIT_SWITCH) 11.1.x
9898
make clean
9999

100+
11.2: php8.4
101+
$(GIT_SWITCH) 11.2.x
102+
make clean
103+
100104
11.x: php8.4
101105
$(GIT_SWITCH) 11.x
102106
make clean

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Make commands should be executed on the host machine.
5353
* `switch` - switches branch, e.g. `make BRANCH=9.3 switch`
5454
* `phpstan` - runs phpstan for core
5555
* `phpstan-baseline` - generates phpstan baseline for core
56-
* `10.2|10.3|10.4|10.5|11.0|11.1|11.x` - provides a clean environment with the specified Drupal version
56+
* `10.2|10.3|10.4|10.5|11.0|11.1|11.2|11.x` - provides a clean environment with the specified Drupal version
5757
* `php8.1|php8.2|php8.3|php8.4` - starts the stack with the specified php version
5858

5959
## PhpStorm configuration

0 commit comments

Comments
 (0)