akkoma/.gitlab-ci.yml

33 lines
523 B
YAML
Raw Normal View History

2018-04-21 01:24:51 -06:00
image: elixir:1.6.4-alpine
2017-11-02 10:26:13 -06:00
services:
- postgres:9.6.2
variables:
POSTGRES_DB: pleroma_test
2017-11-02 10:52:53 -06:00
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
2017-11-02 10:26:13 -06:00
stages:
2018-04-20 05:09:41 -06:00
- lint
2017-11-02 10:26:13 -06:00
- test
before_script:
2018-04-21 01:28:44 -06:00
- apk update git
2018-04-21 01:27:35 -06:00
- apk add git
2017-11-02 10:33:05 -06:00
- mix local.hex --force
- mix local.rebar --force
2017-11-02 10:26:13 -06:00
- mix deps.get
- MIX_ENV=test mix ecto.create
- MIX_ENV=test mix ecto.migrate
2018-04-20 05:09:41 -06:00
lint:
stage: lint
script:
- MIX_ENV=test mix format --check-formatted
2017-11-02 10:26:13 -06:00
unit-testing:
stage: test
script:
2018-02-12 02:13:54 -07:00
- MIX_ENV=test mix test --trace