Skip to content

Commit

Permalink
Test on more postgres versions
Browse files Browse the repository at this point in the history
Update CI.yml

Update CI.yml
  • Loading branch information
baseplate-admin committed Oct 11, 2024
1 parent 31ae643 commit f73688d
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ permissions:
jobs:
test:
runs-on: ubuntu-latest
name: Python ${{ matrix.python-version }} sample
name: Python ${{ matrix.python-version }} sample with Postgres ${{ matrix.postgres-version }}
strategy:
matrix:
python-version:
Expand All @@ -22,10 +22,18 @@ jobs:
'pypy-3.9',
'pypy-3.10',
]
postgres-version:
[
'13',
'14',
'15',
'16',
'17',
]
continue-on-error: true
services:
database:
image: postgres:17
image: postgres:${{ matrix.postgres-version }}
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
Expand Down

0 comments on commit f73688d

Please sign in to comment.