Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Try changing CI slightly #14

Merged
merged 1 commit into from
Jun 20, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

Expand Down