.gitlab-ci.yml: Adds credo to the chain
authorHaelwenn (lanodan) Monnier <contact@hacktivis.me>
Tue, 5 Mar 2019 01:24:12 +0000 (02:24 +0100)
committerHaelwenn (lanodan) Monnier <contact@hacktivis.me>
Wed, 13 Mar 2019 03:17:30 +0000 (04:17 +0100)
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.<M-1>

.gitlab-ci.yml

index 30589c9c575d756bae9357acc262ba7a9268d9f8..187381af793ae56373f2efed717f6fe72466c751 100644 (file)
@@ -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