From f5e2d4db81b48d8e1d696e91f3aea2654500da4d Mon Sep 17 00:00:00 2001 From: Erick Hitter <git-contrib@ethitter.com> Date: Tue, 31 Mar 2020 12:58:18 -0700 Subject: [PATCH] Lint! --- .gitlab-ci.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..120b8dc --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,9 @@ +image: alpine:latest + +lint:shell-script: + stage: test + image: koalaman/shellcheck-alpine:latest + before_script: + - shellcheck -V + script: + - find ./bin -name "*" -exec shellcheck {} \; -- GitLab