aboutsummaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorGravatar Johannes Christ <[email protected]>2018-09-19 21:36:58 +0200
committerGravatar Johannes Christ <[email protected]>2018-09-19 22:09:10 +0200
commitc15b02890d9717c5afa62debfbc81678db5e79a3 (patch)
tree8c7b8178baa41dd4f2b0c9891224736f5edcf46e /.gitlab-ci.yml
parentRemove headers after compilation. (diff)
Add Markdown lint.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml12
1 files changed, 11 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 710776c1..ae4c28e6 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -81,7 +81,7 @@ build-stretch-3.6:
.
- docker push $BASE_IMAGE_URL:stretch-3.6-$CI_COMMIT_REF_SLUG
-lint:
+lint-python:
stage: lint
image: $BASE_IMAGE_URL:alpine-3.7-$CI_COMMIT_REF_SLUG
script:
@@ -89,6 +89,16 @@ lint:
tags:
- docker
+lint-markdown:
+ stage: lint
+ image: ruby:2.5-alpine
+ before_script:
+ - gem install mdl
+ script:
+ - mdl *.md **/*.md
+ tags:
+ - docker
+
test-3.7-alpine:
<<: *test-template
image: $BASE_IMAGE_URL:alpine-3.7-$CI_COMMIT_REF_SLUG