Skip to content

Commit

Permalink
Use postgres 14 for django master
Browse files Browse the repository at this point in the history
  • Loading branch information
jieter committed Jun 26, 2024
1 parent a905f03 commit bc4c1bb
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,20 +35,12 @@ jobs:

tests:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:13.13
env:
POSTGRES_USER: modeltrans
POSTGRES_PASSWORD: modeltrans
POSTGRES_DB: modeltrans
ports:
- 5432:5432

strategy:
matrix:
python-version: [3.8, 3.9, "3.10", 3.11, 3.12]
django-version: [4.2, 5.0, master]
postgres-version: ["13.13", "14"]
exclude:
# Django 4.2
- python-version: 3.12
Expand All @@ -63,9 +55,19 @@ jobs:
# master
- python-version: 3.8
django-version: master
postgres-version: "13.3"
- python-version: 3.9
django-version: master

postgres-version: "13.3"
services:
postgres:
image: postgres:${{ matrix.postgres-version }}
env:
POSTGRES_USER: modeltrans
POSTGRES_PASSWORD: modeltrans
POSTGRES_DB: modeltrans
ports:
- 5432:5432
steps:
- name: Set up Python ${{ matrix.python-version }}
uses: actions/[email protected]
Expand Down

0 comments on commit bc4c1bb

Please sign in to comment.