diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000000000000000000000000000000000000..2f196146fc4e7e8c0de8f42b213b89b51483180b
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,12 @@
+image: python:latest
+stages:
+  - check
+
+before_script:
+  - python -V
+
+check:
+  stage: check
+  script:
+  - pip install flake8
+  - flake8 datetime.py
\ No newline at end of file