Skip to content

Commit cfcc11a

Browse files
committed
Speed up CI by reducing the depth of linting/type checking
This keeps the bottom and top versions, which is likely to be sufficient.
1 parent e6e0585 commit cfcc11a

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

.github/workflows/check.yml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,12 @@ jobs:
4949

5050
strategy:
5151
matrix:
52-
python-version: ["3.6", "3.7", "3.8", "3.9"]
53-
django-version: ["2.2", "3.0", "3.1", "3.2", "4.0"]
52+
python-version: ["3.6", "3.9"]
53+
django-version: ["2.2", "4.0"]
5454
exclude:
5555
# Python 3.6 is not supported beyond Django 3.2
5656
- python-version: "3.6"
5757
django-version: "4.0"
58-
# Python 3.7 is not supported beyond Django 3.2
59-
- python-version: "3.7"
60-
django-version: "4.0"
6158

6259
steps:
6360
- name: Checkout
@@ -88,15 +85,12 @@ jobs:
8885

8986
strategy:
9087
matrix:
91-
python-version: ["3.6", "3.7", "3.8", "3.9"]
92-
django-version: ["2.2", "3.0", "3.1", "3.2", "4.0"]
88+
python-version: ["3.6", "3.9"]
89+
django-version: ["2.2", "4.0"]
9390
exclude:
9491
# Python 3.6 is not supported beyond Django 3.2
9592
- python-version: "3.6"
9693
django-version: "4.0"
97-
# Python 3.7 is not supported beyond Django 3.2
98-
- python-version: "3.7"
99-
django-version: "4.0"
10094

10195
steps:
10296
- name: Checkout

0 commit comments

Comments
 (0)