From f71f70152ad13f3152552c3ba8cf661d9b9ece26 Mon Sep 17 00:00:00 2001 From: Wolfgang Walther Date: Mon, 18 May 2026 14:06:16 +0200 Subject: [PATCH] ci: avoid running pg18 tests twice We already test PG18, the default, with the coverage job, so why run it twice? --- .github/workflows/test.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 251bd119a..598a36d25 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -70,7 +70,8 @@ jobs: strategy: fail-fast: false matrix: - pgVersion: [13, 14, 15, 16, 17] + # Latest version is tested via `coverage` above. + pgVersion: [13, 14, 15, 16] name: PG ${{ matrix.pgVersion }} runs-on: ubuntu-24.04 defaults: