diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000000000000000000000000000000000000..d9982b807bc7324543fc8117e6acd82930725808
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,18 @@
+before_script:
+  - apt-get update -qq && apt-get install -y -qq libhdf5-dev
+  - pip install -U pip setuptools wheel
+  - pip install .
+
+test:
+    image: python:3.7.0
+    script:
+        - echo narf
+
+pages:
+    image: python:3.7.0
+    script:
+        - cd docs && make html
+        - mv _build/html/ ../public/
+    artifacts:
+        paths:
+            - public