From b2811a4fa1a7248b3e9d8be52043921379ff8b73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Krup=C4=8D=C3=ADk?= Date: Tue, 2 Oct 2018 15:22:54 +0200 Subject: [PATCH] modified: .gitlab-ci.yml --- .gitlab-ci.yml | 7 +++++++ 1 file changed, 7 insertions(+) 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 {} +