diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000000000000000000000000000000000000..120b8dca26a857ac37fa3ca0444921e9a453fbac --- /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 {} \;