logo

auto_linker

AutoLinker-shim, based on https://git.pleroma.social/pleroma/auto_linker git clone https://hacktivis.me/git/auto_linker.git
commit: 6dd627bfdf2fb62352c7da2dac7a4a84be65304c
parent df6f5dcab61dc74b87e535234a9470bbbb95873d
Author: Egor Kislitsyn <egor@kislitsyn.com>
Date:   Wed,  3 Apr 2019 14:57:36 +0700

add credo to CI

Diffstat:

M.gitlab-ci.yml11++++++++---
1 file changed, 8 insertions(+), 3 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml @@ -3,11 +3,13 @@ image: elixir:1.7.2 cache: key: ${CI_COMMIT_REF_SLUG} paths: - - deps - - _build + - deps + - _build + stages: - lint - test + - analysis before_script: - mix local.hex --force @@ -25,5 +27,8 @@ unit-testing: coverage: '/(\d+\.\d+\%) \| Total/' script: - mix test --trace --cover + +analysis: + stage: analysis script: - - mix test --trace + - mix credo --strict