From 22e966f090e3a55e2d3d0bf533d94a044f59e505 Mon Sep 17 00:00:00 2001
From: Iain Bryson <bryson.iain@gmail.com>
Date: Tue, 5 Mar 2019 12:41:42 -0800
Subject: [PATCH] Add gitlab CI

---
 .gitlab-ci.yml | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)
 create mode 100644 .gitlab-ci.yml

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000..60c109a
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,19 @@
+image: docker:stable
+services:
+- docker:dind
+
+stages:
+- test
+
+test:
+  image: ruby:2.5.1
+  tags:
+  - enote-docker
+  stage: test
+  script:
+  - echo "Running tests"
+  - echo "$(pwd)"
+  - bundle install
+  - bundle exec rspec rspec
+
+
-- 
GitLab