easyconfigs-it4i/.gitlab-ci.yml
Josef fbdef8a7ca modified: .gitlab-ci.yml
new file:   .gitlab-ci.yml.swp
2018-10-02 14:24:04 +02:00

24 lines
488 B
YAML

stages:
- test
docs:
stage: test
image: davidhrbac/docker-mdcheck:latest
script:
- mdl -r ~MD013 *.md
big_files:
stage: test
image: davidhrbac/docker-mdcheck:latest
allow_failure: true
script:
- find . -type f -not -path "*.git*" -size +10M
other_files:
stage: test
image: davidhrbac/docker-mdcheck:latest
allow_failure: true
script:
- find . -type f -not -path "*.git*" ! -name "*.eb" ! -name "*.patch*" ! -name ".git*" ! -name "LICENSE" ! -name "*.md"