Add gitlab-ci.yml

This commit is contained in:
lambda 2017-11-02 16:26:13 +00:00
parent 9be286a900
commit 201fbd972e
1 changed files with 26 additions and 0 deletions

26
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,26 @@
image: elixir:1.4
services:
- postgres:9.6.2
variables:
POSTGRES_DB: pleroma_test
POSTGRES_USER: pleroma
POSTGRES_PASSWORD: pleroma
stages:
- 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
unit-testing:
stage: test
script:
- MIX_ENV=test mix test
tags: - elixir