Skip to content

Commit 3c40ea9

Browse files
committed
Allow github actions to test wagtail 4
1 parent ecb31b3 commit 3c40ea9

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
branches: [master]
88

99
# Current configuration:
10+
# - python 3.10, wagtail 4.0
1011
# - python 3.9, wagtail 3.0
1112
# - python 3.8, wagtail 2.16
1213
# - python 3.7, django 2.15
@@ -18,9 +19,11 @@ jobs:
1819
strategy:
1920
matrix:
2021
include:
22+
- python: "3.10"
23+
wagtail: wagtail>=4.0,<5.0
24+
latest: true
2125
- python: 3.9
2226
wagtail: wagtail>=3.0,<4.0
23-
latest: true
2427
- python: 3.8
2528
wagtail: wagtail>=2.16,<3.0
2629
- python: 3.7
@@ -42,4 +45,4 @@ jobs:
4245
- if: ${{ matrix.latest }}
4346
uses: codecov/codecov-action@v2
4447
with:
45-
name: Python 3.9
48+
name: Python 3.9

0 commit comments

Comments
 (0)