diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000000000000000000000000000000000000..115a7a03b68dadb1e5159902405fa1ad8773fb8e
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,18 @@
+image: "ruby:2.3"
+
+# Cache gems in between builds
+cache:
+  paths:
+    - vendor/ruby
+
+before_script:
+  - ruby -v
+  - bundle install -j $(nproc) --path vendor
+
+rubocop:
+  script:
+  - rubocop
+
+assets:
+  script:
+  - rake assets:precompile