diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000000000000000000000000000000000000..d93cd99a0df80a4d1d81ec102262eaab431cb8b3
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,15 @@
+image: "python:3.7"
+
+before_script:
+  - python --version
+  - pip install pylint
+
+stages:
+  - lint
+
+linting:
+  tags:
+    - lint
+  stage: lint
+  script:
+    - pylint --ignore=tests.py --max-line-length=120 *.py app