linkify/.gitlab-ci.yml

35 lines
479 B
YAML
Raw Permalink Normal View History

2019-06-27 09:10:11 +00:00
image: elixir:1.8.1
2019-02-08 18:09:16 +00:00
cache:
key: ${CI_COMMIT_REF_SLUG}
paths:
2019-04-03 08:00:52 +00:00
- deps
- _build
2019-02-08 18:09:16 +00:00
stages:
- lint
2019-02-08 18:09:16 +00:00
- test
- analysis
2019-02-08 18:09:16 +00:00
before_script:
- mix local.hex --force
- mix local.rebar --force
- mix deps.get
- mix compile --force
lint:
stage: lint
2019-02-08 18:09:16 +00:00
script:
- mix format --check-formatted
unit-testing:
stage: test
2019-04-03 08:00:52 +00:00
coverage: '/(\d+\.\d+\%) \| Total/'
script:
- mix test --trace --cover
analysis:
stage: analysis
2019-02-08 18:09:16 +00:00
script:
2019-04-03 08:00:52 +00:00
- mix credo --strict