Skip to content

Commit

Permalink
Adding more postgres versions to CI (#337)
Browse files Browse the repository at this point in the history
Closes #337
  • Loading branch information
holtgrewe committed Feb 7, 2022
1 parent 63a29ea commit 29d7aef
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/ci.yml
Expand Up @@ -14,14 +14,27 @@ jobs:
- '3.8'
- '3.9'
- '3.10'
postgres-version:
- '12'
include:
- python-version: '3.8'
postgres-version: '11'
- python-version: '3.8'
postgres-version: '13'
# Postgres 14 is currently not supported.
#
# See https://github.com/bihealth/varfish-server/issues/338
#
# - python-version: '3.8'
# postgres-version: '14'
services:
redis:
image: redis:latest
ports:
- 6379:6379

postgres:
image: postgres:12
image: postgres:${{ matrix.postgres-version }}
env:
POSTGRES_DB: varfish_web
POSTGRES_USER: varfish_web
Expand Down
1 change: 1 addition & 0 deletions HISTORY.rst
Expand Up @@ -92,6 +92,7 @@ Full Change List
- Adding mitochondrial inheritance to case phenotype annotation (#325)
- Fix issue with variant annotation export (#328)
- Adding REST API versioning to (#333)
- Adding more postgres versions to CI (#337)

-------
v0.23.9
Expand Down

0 comments on commit 29d7aef

Please sign in to comment.