1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

ci: sleep 3 before creating the db

This commit is contained in:
Alexander Medvednikov 2019-12-06 02:53:31 +03:00
parent aed22a57e3
commit b8ab85ebe9

View File

@ -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