Skip to content

Commit

Permalink
Fix GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
dyve committed Sep 16, 2024
1 parent f53fc6b commit 4770f29
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: test

on: [ push ]
on: [ push, pull_request ]

concurrency:
group: test-${{ github.head_ref }}
Expand All @@ -19,18 +19,20 @@ jobs:
strategy:
matrix:
python-version: [3.8, 3.9, "3.10", 3.11, 3.12]
django-version: [4.2, 5.0, "main"]
django-version: [4.2, 5.0, 5.1, "main"]
exclude:
# Django 4.2
- python-version: 3.12
django-version: 4.2

# Django 5.0
- python-version: 3.8
django-version: 5.0
- python-version: 3.9
django-version: 5.0

# Django 5.1
- python-version: 3.8
django-version: 5.1
- python-version: 3.9
django-version: 5.1

# Django main
- python-version: 3.8
django-version: "main"
Expand Down

0 comments on commit 4770f29

Please sign in to comment.