Skip to content

Commit

Permalink
Let's try testing with 11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
atodorov committed Apr 19, 2023
1 parent 2f4924a commit 89b87cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
matrix:
# always use latest Python b/c the point here is to test PostgreSQL compatibility
python-version: ["3.11"]
postgres-version: [11-bullseye, 12, 13, 14, 15]
postgres-version: [11.1-alpine, 11-bullseye, 12, 13, 14, 15]

steps:
- uses: actions/checkout@v3
Expand All @@ -25,7 +25,7 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: Install Django
if: matrix.postgres-version == '11-bullseye'
if: ${{ matrix.postgres-version == '11-bullseye' || matrix.postgres-version == '11.1-alpine' }}
run: |
# Django 4.1 is the last one to support Postgres 11
pip install Django==4.1.*
Expand Down

0 comments on commit 89b87cf

Please sign in to comment.