From 90be7f2dd294c0dbae8dc9c04aead1aa4fbc5fda Mon Sep 17 00:00:00 2001 From: Dan Barber Date: Sun, 12 Feb 2023 11:19:32 -0600 Subject: [PATCH] Add postgresql --- .circleci/config.yml | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index a5d72cd..402cc2f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -7,12 +7,20 @@ jobs: build: docker: - image: cimg/elixir:1.14-browsers + - image: circleci/postgres:14.6-alpine + working_directory: ~/project steps: - browser-tools/install-browser-tools - checkout - - run: mix --version - - run: mix deps.get - - run: mix test + - run: + name: Install hex + command: mix local.hex --force + - run: + name: Install rebar + command: mix local.rebar --force + - run: + name: Install mix deps + command: mix deps.get workflows: build-workflow: