diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000000000000000000000000000000000000..5f70e0d6712a2291d81711f5bf128b8c64638da4 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,13 @@ +docs: + stage: test + image: davidhrbac/docker-mdcheck:latest + allow_failure: true + script: + - mdl -r ~MD013 *.md + +shellcheck: + stage: test + image: davidhrbac/docker-shellcheck:latest + script: + - which shellcheck || apt-get update && apt-get install -y shellcheck + - shellcheck *.sh