Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
* origin/master:
  Use postgres 12
  Add Django 4.2 to test matrix, remove Python 3.7
  • Loading branch information
j4mie committed Jul 17, 2023
2 parents cbc1acc + 3daef04 commit acf3c53
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,25 +9,21 @@ jobs:

strategy:
matrix:
python: ["3.7", "3.8", "3.9", "3.10", "3.11"]
django: ["3.2", "4.0", "4.1"]
python: ["3.8", "3.9", "3.10", "3.11"]
django: ["3.2", "4.0", "4.1", "4.2"]
exclude:
- python: "3.6"
- python: "3.11"
django: "3.2"
- python: "3.11"
django: "4.0"
- python: "3.7"
django: "4.0"
- python: "3.6"
django: "4.1"
- python: "3.7"
django: "4.1"
database_url:
- postgres://runner:password@localhost/project
- mysql://root:[email protected]/project
- 'sqlite:///:memory:'

services:
postgres:
image: postgres:11
image: postgres:12
ports:
- 5432:5432
env:
Expand Down

0 comments on commit acf3c53

Please sign in to comment.