summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 8ea652086da7e3b594b411c1650cc9d3abc5650e (plain)
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
image: elixir:1.7.2

services:
  - postgres:9.6.2

variables:
  POSTGRES_DB: pleroma_test
  POSTGRES_USER: postgres
  POSTGRES_PASSWORD: postgres
  DB_HOST: postgres

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

before_script:
  - mix local.hex --force
  - mix local.rebar --force
  - mix deps.get
  - MIX_ENV=test mix ecto.create
  - MIX_ENV=test mix ecto.migrate

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

unit-testing:
  stage: test
  script:
    - MIX_ENV=test mix test --trace