This repository was archived by the owner on Apr 26, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +12
-2
lines changed Expand file tree Collapse file tree 3 files changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ def set_output(key: str, value: str):
64
64
{
65
65
"python-version" : "3.11" ,
66
66
"database" : "postgres" ,
67
- "postgres-version" : "14 " ,
67
+ "postgres-version" : "15 " ,
68
68
"extras" : "all" ,
69
69
}
70
70
)
Original file line number Diff line number Diff line change @@ -412,7 +412,7 @@ jobs:
412
412
postgres-version : " 11"
413
413
414
414
- python-version : " 3.11"
415
- postgres-version : " 14 "
415
+ postgres-version : " 15 "
416
416
417
417
services :
418
418
postgres :
@@ -430,6 +430,15 @@ jobs:
430
430
431
431
steps :
432
432
- uses : actions/checkout@v3
433
+ - name : Add PostgreSQL apt repository
434
+ # We need a version of pg_dump that can handle the version of
435
+ # PostgreSQL being tested against. The Ubuntu package repository lags
436
+ # behind new releases, so we have to use the PostreSQL apt repository.
437
+ # Steps taken from https://www.postgresql.org/download/linux/ubuntu/
438
+ run : |
439
+ sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'
440
+ wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
441
+ sudo apt-get update
433
442
- run : sudo apt-get -qq install xmlsec1 postgresql-client
434
443
- uses : matrix-org/setup-python-poetry@v1
435
444
with :
Original file line number Diff line number Diff line change
1
+ Test against PostgreSQL 15 in CI.
You can’t perform that action at this time.
0 commit comments