From f5584a0582c15a516758eb5bb5a06ad6f27df614 Mon Sep 17 00:00:00 2001 From: Jens Steidl <Jens.Steidl@slub-dresden.de> Date: Thu, 21 Sep 2023 16:48:10 +0200 Subject: [PATCH] - exclude speecheck SC2317 (false positives, see https://github.com/koalaman/shellcheck/issues/2660) --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c05f654..31563af 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -28,4 +28,4 @@ stages: # List of stages for jobs, and their order of execution test-job: # This job runs in the test stage. stage: test # It only starts when the job in the build stage completes successfully. script: - - shellcheck --color=always --shell=bash "validate_workflow.sh" + - shellcheck --color=always --shell=bash --exclude=SC2317 "validate_workflow.sh" -- GitLab