From 62462c2fbf1af8e07954c92d795a5094a3fcd194 Mon Sep 17 00:00:00 2001
From: Tamas Gal <tgal@km3net.de>
Date: Mon, 31 Aug 2020 10:03:45 +0200
Subject: [PATCH] Add CI

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

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000..b7775a4
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,29 @@
+image: docker.km3net.de/base/python:3
+
+stages:
+  - install
+  - test
+  - doc
+
+before_script:
+    - pip install cookiecutter
+    - cookiecutter --no-input .
+    - cd awesome
+
+install-py3.5:
+    image: docker.km3net.de/base/python:3.5
+    stage: install
+    script:
+        - make install
+
+install-py3.6:
+    image: docker.km3net.de/base/python:3.6
+    stage: install
+    script:
+        - make install
+
+install-py3.7:
+    image: docker.km3net.de/base/python:3.7
+    stage: install
+    script:
+        - make install
-- 
GitLab