easyconfigs-it4i/.gitlab-ci.yml
2018-10-02 15:51:21 +02:00

32 lines
926 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
script:
- find . -type f -not -path "*.git*" -size +10M
- find . -type f -not -path "*.git*" -size +10M -exec false {} +
other_files:
stage: test
image: davidhrbac/docker-mdcheck:latest
script:
- find . -type f -not -path "*.git*" ! -name "*.eb" ! -name "*.patch*" ! -name ".git*" ! -name "LICENSE" ! -name "*.md" ! -name "*.sh"
- find . -type f -not -path "*.git*" ! -name "*.eb" ! -name "*.patch*" ! -name ".git*" ! -name "LICENSE" ! -name "*.md" ! -name "*.sh" -exec false {} +
python_check:
stage: test
image: davidhrbac/docker-pycheck:latest
script:
- which autopep8 || pip install autopep8
- for i in `find . -type f -name "*.eb"`; do autopep8 --in-place --aggressive --aggressive "$i"; done
only:
- master