From 408d48a651a7b73b19858b114ef229daf1acdd03 Mon Sep 17 00:00:00 2001 From: Sebastian Achilles <s.achilles@fz-juelich.de> Date: Tue, 23 Nov 2021 10:21:30 +0100 Subject: [PATCH] add --check-contrib to CI check --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 00bad6bdf..d05bb05c8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -40,6 +40,6 @@ check_style: - echo "List of files to be checked $eb_list" - for i in $eb_list; do - echo "Checking $(basename $i) ..." - - eb --check-style $i || faulty="$faulty $i" + - eb --check-style --check-contrib $i || faulty="$faulty $i" - done - if [ -n "$faulty" ]; then echo "Faulty EasyConfigs... $faulty"; exit 1; fi -- GitLab