diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000000000000000000000000000000000000..c60cf15cbad437aa5018993ff477cf347a4bd21f
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,27 @@
+image: goblinogm/sphinx-builder
+
+cache:
+  paths:
+  - vendor
+
+test:
+  script:
+  - cd /app
+  - pip install -I -r requirements.txt
+  - cd /app/docs
+  - make html
+  except:
+    - master
+
+pages:
+  script:
+  - cd /app
+  - pip install -I -r requirements.txt
+  - cd /app/docs
+  - make html
+  - mv /app/docs/_build/html /app/public
+  artifacts:
+    paths:
+    - public
+  only:
+  - master