From e77583392d6ceaa09d99d82415d70595df5f0321 Mon Sep 17 00:00:00 2001 From: Dan Barber Date: Sun, 12 Feb 2023 13:31:36 -0600 Subject: [PATCH] Add DB creds --- .circleci/config.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 1d01400..0867ac0 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -7,7 +7,13 @@ jobs: build: docker: - image: cimg/elixir:1.14-browsers + environment: + PGUSER: postgres + PGPASSWORD: password - image: cimg/postgres:14.6 + environment: + POSTGRES_USER: postgres + POSTGRES_PASSWORD: password steps: - browser-tools/install-chrome - browser-tools/install-chromedriver @@ -28,4 +34,4 @@ jobs: workflows: build-workflow: jobs: - - build \ No newline at end of file + - build