Skip to content

Commit

Permalink
Fix some issues in Cirrus config
Browse files Browse the repository at this point in the history
  • Loading branch information
bitwalker committed Mar 19, 2020
1 parent beb1aa3 commit 5091d16
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,21 @@ lint_task:
container:
image: elixir:latest
script:
mix --check-formatted
mix format --check-formatted

test_task:
container:
image: elixir:latest
env:
MIX_ENV: 'test'
LC_ALL: 'en_US.UTF-8'
LANG: 'en_US.utf8'
mix_cache:
folder: deps
fingerprint_script: cat mix.lock
populate_script: mix deps.get
populate_script: |
mix local.hex --if-missing --force
mix local.rebar --force
mix deps.get
compile_script: mix compile
test_script: mix test

0 comments on commit 5091d16

Please sign in to comment.