Add PostgreSQL 18 support to Github Actions (#816)
* Run against PostgreSQL 18 * Handle constraints for pg18 * Bump golangci-linter to 1.62.2 (#772) * Bump golangci-linter to 1.62.2 * Address linting warning via change or ignore
This commit is contained in:
@@ -1,6 +1,4 @@
|
||||
---
|
||||
version: "3.9"
|
||||
|
||||
x-base: &base
|
||||
environment: &env
|
||||
POSTGRES_DB: pgweb
|
||||
@@ -11,6 +9,16 @@ x-base: &base
|
||||
interval: 5s
|
||||
|
||||
services:
|
||||
postgres18:
|
||||
<<: *base
|
||||
image: postgres:18
|
||||
ports:
|
||||
- 5433:5432
|
||||
postgres17:
|
||||
<<: *base
|
||||
image: postgres:17
|
||||
ports:
|
||||
- 5433:5432
|
||||
postgres16:
|
||||
<<: *base
|
||||
image: postgres:16
|
||||
|
||||
Reference in New Issue
Block a user