From 8d19ff9ffdb560dc8c188eec73bdf7b81d43ffc6 Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Wed, 24 Jul 2019 11:33:57 +0200 Subject: [PATCH] [gitlab] Make CI output colorful --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ddeb2a6..4a9155c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -11,9 +11,9 @@ analyze: - shellcheck --version script: - echo "--------- CHECKING POSIX SHELLSCRIPTS -------------" - - find . -type f -name '*.sh' | xargs shellcheck + - find . -type f -name '*.sh' | xargs shellcheck -Calways - echo "--------- CHECKING ZSH SHELLSCRIPTS -------------" - - find . -type f -name '*.zsh' | xargs shellcheck -s bash -e SC2034 + - find . -type f -name '*.zsh' | xargs shellcheck -Calways -s bash -e SC2034 lint: stage: test