Skip to content

Commit a727d2d

Browse files
committed
fix: test matrix
1 parent 03f0bf8 commit a727d2d

File tree

1 file changed

+16
-2
lines changed

1 file changed

+16
-2
lines changed

.github/workflows/run-tests.yml

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,25 @@ jobs:
1515

1616
strategy:
1717
matrix:
18-
python-version: [ "3.10", "3.11", "3.12" , "3.13"]
19-
django-version: [ "5.0", "5.1" ]
18+
python-version: [ "3.10", "3.11", "3.12" ]
19+
django-version: [ "5.0", "5.1", "5.2" ]
2020
include:
21+
# Django 4.2 supports Python 3.8, 3.9, 3.10, 3.11, 3.12
22+
- python-version: "3.8"
23+
django-version: "4.2"
2124
- python-version: "3.9"
2225
django-version: "4.2"
26+
- python-version: "3.10"
27+
django-version: "4.2"
28+
- python-version: "3.11"
29+
django-version: "4.2"
30+
- python-version: "3.12"
31+
django-version: "4.2"
32+
# Python 3.13 only supported in Django 5.1+
33+
- python-version: "3.13"
34+
django-version: "5.1"
35+
- python-version: "3.13"
36+
django-version: "5.2"
2337
steps:
2438
- name: Checkout code
2539
uses: actions/checkout@v4

0 commit comments

Comments
 (0)