Skip to content

Commit 68ba558

Browse files
authored
Add support for 11.0.x (#32)
1 parent 24c1bee commit 68ba558

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.github/workflows/tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
drupal_version: ['10.2', '10.3', '10.4', '11.x']
20+
drupal_version: ['10.2', '10.3', '10.4', '11.0', '11.x']
2121

2222
steps:
2323
- name: Create project
@@ -39,7 +39,7 @@ jobs:
3939
4040
- name: Run tests
4141
env:
42-
DRUPAL_VERSION: ${{ matrix.drupal_version == '11.x' && '11.0-dev' || matrix.drupal_version }}
42+
DRUPAL_VERSION: ${{ matrix.drupal_version == '11.x' && '11.0.0-dev' || matrix.drupal_version }}
4343
run: |
4444
cd drupal-contrib
4545
bats tests

Makefile

+4
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,10 @@ switch:
7777
$(GIT_SWITCH) 10.4.x
7878
make clean
7979

80+
11.0: php8.3
81+
$(GIT_SWITCH) 11.0.x
82+
make clean
83+
8084
11.x: php8.3
8185
$(GIT_SWITCH) 11.x
8286
make clean

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Make commands should be executed on the host machine.
5151
* `umami` - installs Drupal with the demo_umami profile
5252
* `login` - gets a one-time login link
5353
* `switch` - switches branch, e.g. `make BRANCH=9.3 switch`
54-
* `10.2|10.3|10.4|11.x` - provides a clean environment with the specified Drupal version
54+
* `10.2|10.3|10.4|11.0|11.x` - provides a clean environment with the specified Drupal version
5555
* `php8.1|php8.2|php8.3` - starts the stack with the specified php version
5656

5757
## PhpStorm configuration

0 commit comments

Comments
 (0)