From: Haelwenn (lanodan) Monnier Date: Tue, 5 Mar 2019 01:24:12 +0000 (+0100) Subject: .gitlab-ci.yml: Adds credo to the chain X-Git-Url: https://git.squeep.com/?a=commitdiff_plain;h=d93ab4817b9e0cd5f29851722aa8ed9e39a04f32;p=akkoma .gitlab-ci.yml: Adds credo to the chain Not really sure about the order in which this is but it feels right because credo is more about checking if a ~working code could need some improvements. --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 30589c9c5..187381af7 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -19,6 +19,7 @@ cache: stages: - lint - test + - analysis before_script: - mix local.hex --force @@ -37,3 +38,8 @@ unit-testing: stage: test script: - mix test --trace --preload-modules + +analysis: + stage: analysis + script: + - mix credo list