From 68f8f4bf506c1b254e330baebcb6ffd4c1e7e481 Mon Sep 17 00:00:00 2001 From: sorrelbri Date: Fri, 7 Feb 2020 19:21:19 -0800 Subject: [PATCH] config psql in circleci config --- .circleci/config.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 4bc7263..1a8cf86 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -23,13 +23,14 @@ jobs: DATABASE_URL: postgresql://root@localhost/circle_test # Service container image - - image: circleci/postgres:9.6.5-alpine-ram + - image: circleci/postgres:11.4 working_directory: ~/node-go steps: - checkout - - run: sudo apt-get install postgresql-client-9.6 + - run: sudo apt-get install postgresql-client-11.4 + - run: psql CREATE DATABASE circle_test # Download and cache dependencies - restore_cache: