Skip to content

Commit

Permalink
Fix circle configuration typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt McFarland committed Oct 4, 2017
1 parent 93b7e88 commit aa13de9
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@ jobs:
steps:
- checkout
- restore_cache:
keys:
- dependency-cache-{{ checksum "mix.lock" }}
keys:
- dependency-cache-{{ checksum "mix.lock" }}
- run: mix local.rebar --force
- run: mix local.hex --force
- run: mix deps.get
- run: mix test
- run: mix credo --mute-exit-status
- save_cache:
key: dependency-cache-{{ checksum "mix.lock" }}
paths:
- _build
- deps
- ~/.mix
key: dependency-cache-{{ checksum "mix.lock" }}
paths:
- _build
- deps
- ~/.mix

0 comments on commit aa13de9

Please sign in to comment.