Add format checking to CI.

This commit is contained in:
lain 2018-04-20 13:09:41 +02:00
parent 193be32f45
commit 18c3ca7844
1 changed files with 6 additions and 0 deletions

View File

@ -9,6 +9,7 @@ variables:
POSTGRES_PASSWORD: postgres
stages:
- lint
- test
before_script:
@ -18,6 +19,11 @@ before_script:
- MIX_ENV=test mix ecto.create
- MIX_ENV=test mix ecto.migrate
lint:
stage: lint
script:
- MIX_ENV=test mix format --check-formatted
unit-testing:
stage: test
script: