Skip to content

Commit 5633f94

Browse files
[tests] Introduces a matrix of all the django version that should work
1 parent e7c5634 commit 5633f94

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,10 @@ jobs:
1212
strategy:
1313
matrix:
1414
python-version: [3.9, "3.10", "3.11", "3.12", "3.13"]
15+
django-version: ["2.2.28", "3.2.25", "4.2.20", "5.0.14", "5.1.8", "5.2"]
1516
steps:
1617
- uses: actions/checkout@v2
17-
- name: Python ${{ matrix.python-version }}
18+
- name: Python ${{ matrix.python-version }} django ${{ matrix.django-version }}
1819
uses: actions/setup-python@v2
1920
with:
2021
python-version: ${{ matrix.python-version }}
@@ -23,6 +24,7 @@ jobs:
2324
sudo apt-get update
2425
sudo apt-get install -yqq texlive-latex-base gettext texlive-pictures texlive-latex-extra
2526
sudo apt-get install -yqq texlive-xetex libblas-dev liblapack-dev libatlas-base-dev gfortran
27+
pip3 install django==${{ matrix.django-version }}
2628
pip3 install -e ".[dev]"
2729
- name: Test
2830
env:

0 commit comments

Comments
 (0)