mobilizon/.gitlab-ci.yml
Thomas Citharel d16d6d07d8 add pg client
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2018-01-14 00:10:42 +01:00

33 lines
507 B
YAML

image: elixir:1.4
services:
- mdillon/postgis:9.6-alpine
variables:
MIX_ENV: "test"
POSTGRES_DB: eventos_test
POSTGRES_USER: ci
POSTGRES_PASSWORD: test
cache:
key: "$CI_JOB_NAME"
paths:
- deps
- _build
- .rebar3
before_script:
- apt-get update
- apt-get install -y postgresql-client
- mix local.rebar --force
- mix local.hex --force
- mix deps.get
- MIX_ENV=test mix ecto.create
- MIX_ENV=test mix ecto.migrate
mix:
script:
- mix credo || true
- mix test