forked from AkkomaGang/akkoma
Add gitlab-ci.yml
This commit is contained in:
parent
9be286a900
commit
201fbd972e
1 changed files with 26 additions and 0 deletions
26
.gitlab-ci.yml
Normal file
26
.gitlab-ci.yml
Normal 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
|
Loading…
Reference in a new issue