mirror of
https://framagit.org/framasoft/mobilizon.git
synced 2025-03-08 07:33:35 +00:00
24 lines
300 B
YAML
24 lines
300 B
YAML
image: elixir:latest
|
|
|
|
services:
|
|
- mdillon/postgis:9.6-alpine
|
|
|
|
variables:
|
|
MIX_ENV: "test"
|
|
|
|
cache:
|
|
key: "$CI_JOB_NAME"
|
|
paths:
|
|
- deps
|
|
- _build
|
|
- .rebar3
|
|
|
|
before_script:
|
|
- mix local.rebar --force
|
|
- mix local.hex --force
|
|
- mix deps.get
|
|
|
|
mix:
|
|
script:
|
|
- mix credo
|
|
- mix test
|