diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000000000000000000000000000000000000..a3c192cd9b48e2cb633b5ff4945bf756b31f611f
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,32 @@
+before_script:
+  - python setup.py install
+
+test:2.7:
+  image: python:2.7-alpine
+  type: test
+  script:
+    - python setup.py test
+
+test:3.3:
+  image: python:3.3-alpine
+  type: test
+  script:
+    - python setup.py test
+
+test:3.4:
+  image: python:3.4-alpine
+  type: test
+  script:
+    - python setup.py test
+
+test:3.5:
+  image: python:3.5-alpine
+  type: test
+  script:
+    - python setup.py test
+
+test:3.6:
+  image: python:3.6-alpine
+  type: test
+  script:
+    - python setup.py test