From d93ab4817b9e0cd5f29851722aa8ed9e39a04f32 Mon Sep 17 00:00:00 2001 From: "Haelwenn (lanodan) Monnier" Date: Tue, 5 Mar 2019 02:24:12 +0100 Subject: [PATCH] .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. --- .gitlab-ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) 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