Skip to content

Commit a33427e

Browse files
committed
Add latest Django to gh action's test matrix
1 parent f55d729 commit a33427e

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/tests.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,15 @@ jobs:
88
strategy:
99
max-parallel: 4
1010
matrix:
11-
django: ["2.2", "3.0", "3.1", "3.2"]
11+
django: ["2.2", "3.0", "3.1", "3.2", "main"]
1212
python-version: ["3.6", "3.7", "3.8", "3.9"]
13+
exclude:
14+
# Latest Django doesn't support Python 3.6
15+
- django: "main"
16+
python-version: "3.6"
17+
# Latest Django doesn't support Python 3.7
18+
- django: "main"
19+
python-version: "3.7"
1320

1421
steps:
1522
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)