From aaf0594e6334e635f91c39c0bb54b8b42b2a467a Mon Sep 17 00:00:00 2001 From: Robert Prehn <3952444+prehnRA@users.noreply.github.com> Date: Tue, 20 Jul 2021 16:09:22 -0500 Subject: [PATCH] feat: Run credo in CI --- .gitlab-ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7e7b6d93..4c5a29c9 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -38,6 +38,11 @@ test_1.12.1: <<: *test_template image: "elixir:1.12.1-alpine" +credo: + stage: test + image: "elixir:1.12.1-alpine" + script: mix credo diff master --all + build_image_for_commit: stage: test image: "docker:20.10"