From b8ab85ebe9824b6142436d8478074340a4e0caa7 Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Fri, 6 Dec 2019 02:53:31 +0300 Subject: [PATCH] ci: sleep 3 before creating the db --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8ad8b366e3..a096fcf891 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,6 +40,7 @@ jobs: - name: Set up pg database run: | brew services start postgresql + sleep 3 psql -U postgres -c 'create database customerdb;' psql -d customerdb -f examples/database/pg/mydb.sql - name: Test v->c