Skip to content

Commit

Permalink
Update test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
fsbraun authored Nov 29, 2024
1 parent 7196bc5 commit 68a728b
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,16 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10']
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
django-version: ['3.2', '4.2', '5.0', '5.1']
os: [
ubuntu-latest,
ubuntu-latest
]

exclude:
- django-version: '5.0'
python-version: 3.9
- django-version: '5.1'
python-version: 3.9
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -23,7 +27,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install django==${{ matrix.django-version }} coverage
pip install django~=${{ matrix.django-version }} coverage
python setup.py install
- name: Run coverage
Expand Down

0 comments on commit 68a728b

Please sign in to comment.