Skip to content

Commit

Permalink
run tests against both django 3.2 and 4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
gherceg committed Nov 13, 2023
1 parent acaa854 commit 9145e40
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ jobs:
strategy:
matrix:
python-version: [ "3.8", "3.9", "3.10", "3.11" ]
django-version: [ "3.2.*", "4.2.*" ]

steps:
- uses: actions/checkout@v4
Expand All @@ -21,7 +22,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: install dependencies
run: |
pip install django==3.2.*
pip install django==${{ matrix.django-version }}
pip install -e .
pip install coverage coveralls
- name: run tests
Expand Down

0 comments on commit 9145e40

Please sign in to comment.