From 3f37ba1e7dbe6d1f20f7cce1294c807a0d5a4db0 Mon Sep 17 00:00:00 2001 From: Mike Alfare Date: Tue, 30 Jan 2024 10:46:59 -0500 Subject: [PATCH] try services approach --- .github/workflows/integration-tests.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 52fc7d02..c8fb1292 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -50,6 +50,10 @@ jobs: - name: Check out repository uses: actions/checkout@v4 + - name: Look for postgres + shell: bash + run: pg_isready -h localhost -p 5432 -U postgres + - name: Setup postgres shell: bash run: psql -d postgres -U postgres -c "select 1"