From 65563c9704ce5a2b5da2d5b6cc61717181bf5512 Mon Sep 17 00:00:00 2001 From: Lars Beckers <lars.beckers@rwth-aachen.de> Date: Sat, 15 Dec 2018 20:54:43 +0100 Subject: [PATCH] add gitlab ci configuration --- .gitlab-ci.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..f759f6c --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,15 @@ +--- + +image: stretch_python + +before_script: + - export LANG=en_US.UTF-8 + +stages: + - test + +test: + stage: test + script: + - "python3 -m py_compile *.py" + - flake8 . -- GitLab