summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 1ebb025e17d10f7dbbbaddc379ecb20b33a508bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
image: elixir:latest

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

test:
  script:
    - MIX_ENV=test mix compile
    - mix test --cover
  artifacts:
    paths:
      - cover

format:
  script:
    - mix format --check-formatted