From 4be783b2e9451d8a1ea75aac642406a6e025efc7 Mon Sep 17 00:00:00 2001
From: Kevin Lyda <kevin@ie.suberic.net>
Date: Mon, 2 Jan 2017 19:42:01 +0000
Subject: [PATCH] Add gitlab testing.

Have chkcrontab be tested first at home.
---
 .gitlab-ci.yml | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)
 create mode 100644 .gitlab-ci.yml

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000..a3c192c
--- /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
-- 
GitLab