From 156e6555719a7c876cb01f68eeacd9590c5ca779 Mon Sep 17 00:00:00 2001 From: Hein Date: Sun, 4 Jan 2026 22:04:20 +0200 Subject: [PATCH] =?UTF-8?q?chore(ci):=20=F0=9F=8E=89=20Install=20PostgreSQ?= =?UTF-8?q?L=20client=20for=20integration=20tests?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/integration-tests.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index e3864b0..1b3c507 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -46,6 +46,11 @@ jobs: - name: Download dependencies run: go mod download + - name: Install PostgreSQL client + run: | + sudo apt-get update + sudo apt-get install -y postgresql-client + - name: Initialize test database env: PGPASSWORD: relspec_test_password