From be7b7d47bef30763c1bb6e3e5140a46c4a41945e Mon Sep 17 00:00:00 2001 From: jrusso1020 Date: Sat, 20 Jun 2020 14:15:51 -0400 Subject: [PATCH] Try changing CI slightly Try changing CI slightly so that we have similar structures in both steps. --- .circleci/config.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 0149b19..c625e1d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -9,6 +9,11 @@ jobs: # basic units of work in a run steps: # commands that comprise the `build` job - checkout # check out source code to working directory + - run: + name: Get dependencies + command: | + mix local.hex --force + mix local.rebar --force - restore_cache: # restores saved mix cache # Read about caching dependencies: https://circleci.com/docs/2.0/caching/ keys: # list of cache keys, in decreasing specificity @@ -22,8 +27,6 @@ jobs: # basic units of work in a run - run: # compile credo and its dependencies so that Mix does not try to compile the entire world in order to find the `credo` task. name: Get dependencies and check lint command: | - mix local.hex --force - mix local.rebar --force echo "--- Install Dependencies" mix deps.get