This repository has been archived on 2020-02-06. You can view files and clone it, but cannot push or open issues/pull-requests.
pleroma/.gitlab-ci.yml

31 lines
481 B
YAML
Raw Normal View History

2018-04-21 03:30:15 -04:00
image: elixir:1.6.4
2017-11-02 12:26:13 -04:00
services:
- postgres:9.6.2
variables:
POSTGRES_DB: pleroma_test
2017-11-02 12:52:53 -04:00
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
2017-11-02 12:26:13 -04:00
stages:
2018-04-20 07:09:41 -04:00
- lint
2017-11-02 12:26:13 -04:00
- test
before_script:
2017-11-02 12:33:05 -04:00
- mix local.hex --force
- mix local.rebar --force
2017-11-02 12:26:13 -04:00
- mix deps.get
- MIX_ENV=test mix ecto.create
- MIX_ENV=test mix ecto.migrate
2018-04-20 07:09:41 -04:00
lint:
stage: lint
script:
- MIX_ENV=test mix format --check-formatted
2017-11-02 12:26:13 -04:00
unit-testing:
stage: test
script:
2018-02-12 04:13:54 -05:00
- MIX_ENV=test mix test --trace