We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb4c77e commit 1b7fabdCopy full SHA for 1b7fabd
.github/workflows/tests.yml
@@ -20,10 +20,13 @@ jobs:
20
runs-on: ubuntu-latest
21
22
strategy:
23
- matrix: # https://docs.djangoproject.com/en/5.0/faq/install/#what-python-version-can-i-use-with-django
+ matrix:
24
python-version: ["3.9", "3.10", "3.11", "3.12"]
25
node-version: ["18.x"]
26
django-version: ["4.2.*", "5.0.*"]
27
+ exclude: # https://docs.djangoproject.com/en/5.0/faq/install/#what-python-version-can-i-use-with-django
28
+ - python-version: "3.9"
29
+ django-version: "5.0.*"
30
31
steps:
32
- uses: actions/checkout@v3
0 commit comments