diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c0ec2f02..75c6b1c6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -20,3 +20,10 @@ other_files: 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 {} + + +other_files: + stage: test + image: davidhrbac/docker-mdcheck:latest + script: + - which autopep8 || pip install autopep8 + - find . -type f -name "*.eb" -exec autopep8 {} +