Add federation for unrepeats
[akkoma] / .gitlab-ci.yml
1 image: elixir:1.5
2
3 services:
4 - postgres:9.6.2
5
6 variables:
7 POSTGRES_DB: pleroma_test
8 POSTGRES_USER: postgres
9 POSTGRES_PASSWORD: postgres
10
11 stages:
12 - test
13
14 before_script:
15 - mix local.hex --force
16 - mix local.rebar --force
17 - mix deps.get
18 - MIX_ENV=test mix ecto.create
19 - MIX_ENV=test mix ecto.migrate
20
21 unit-testing:
22 stage: test
23 script:
24 - MIX_ENV=test mix test --trace