ip/.gitlab-ci.yml

38 lines
450 B
YAML
Raw Normal View History

2018-09-04 15:25:04 +12:00
image: elixir:latest
cache:
key: "$CI_JOB_NAME"
paths:
- deps
- _build
- /root/.mix
variables:
MIX_ENV: "test"
before_script:
- mix local.hex --force
- mix local.rebar --force
- mix deps.get --only test
test:
script:
- mix test
2018-09-04 15:25:04 +12:00
credo:
script:
- mix credo --strict
2018-09-04 15:25:04 +12:00
audit:
script:
- mix hex.audit
format:
script:
- mix format --check-formatted
# inch:
# script:
# - mix inch --pedantic