summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: a580fed21a0651da53ab3b6dd205bb638d0b7377 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
image: elixir:1.9

variables:
  MIX_ENV: test

cache:
  key: ${CI_COMMIT_REF_SLUG}
  paths:
    - deps
    - _build
stages:
  - build
  - test

before_script:
  - mix local.hex --force
  - mix local.rebar --force

build:
  stage: build
  script:
    - mix deps.get
    - mix compile --force

unit-testing:
  stage: test
  coverage: '/(\d+\.\d+\%) \| Total/'
  script:
    - mix test --trace --cover

lint:
  stage: test
  script:
    - mix format --check-formatted

analysis:
  stage: test
  script:
    - mix deps.get
    - mix credo --strict