From 8163d5da27d153a7047ddf0c10886307aca413fe Mon Sep 17 00:00:00 2001 From: enomotodev Date: Mon, 24 Jun 2024 16:40:41 +0900 Subject: [PATCH] ci: Add PostgreSQL 14 and 15 to GitHub Actions matrix --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 6ab63b40..5954288e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -127,7 +127,7 @@ jobs: postgres: strategy: matrix: - dbversion: ['postgres:latest', 'postgres:13', 'postgres:12', 'postgres:11', 'postgres:10'] + dbversion: ['postgres:latest', 'postgres:15', 'postgres:14', 'postgres:13', 'postgres:12', 'postgres:11', 'postgres:10'] go: ['1.22', '1.21', '1.20'] platform: [ubuntu-latest] # can not run in macOS and Windows runs-on: ${{ matrix.platform }}