From 0d82ef3d40a834c222294d5163d082d05d9dbe67 Mon Sep 17 00:00:00 2001 From: Manuel Bustillo Date: Tue, 30 Jul 2024 21:33:02 +0200 Subject: [PATCH] Install psql client --- .github/workflows/tests.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 8341f66..8b43ded 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -28,6 +28,7 @@ jobs: - run: bundle install - name: Wait until Postgres is ready to accept connections run: | + apt-get update && apt-get install -f -y postgresql-client until pg_isready -h postgres -U postgres -d postgres do sleep 1