pleroma/.gitlab-ci.yml

26 lines
399 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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