easyconfigs-it4i/.gitlab-ci.yml
2018-10-02 15:35:28 +02:00

31 lines
898 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-mdcheck:latest
script:
- which pip || apt install -y python-pip
- which autopep8 || pip install autopep8
- find . -type f -name "*.eb" -exec autopep8 {} +