From 0e301e1306fd9855024e2656359cade257cd6097 Mon Sep 17 00:00:00 2001
From: florian <f.spreckelsen@inidscale.com>
Date: Wed, 30 Jun 2021 12:57:49 +0200
Subject: [PATCH] TST: Add stages to CI

---
 .gitlab-ci.yml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index bf17c70..c20e7ce 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -23,6 +23,7 @@ stages:
 
 # Only check style for Julia 1.6 since support for 1.0 may be dropped anyway
 code-style:
+  stage: code-style
   image: julia:1.6
   tags: [ docker ]
   script:
@@ -45,6 +46,7 @@ code-style:
 # Name a test and select an appropriate image.
 # images comes from Docker hub
 test:1.0:
+  stage: test
   image: julia:1.0
   # Use `docker` runners
   tags: [ docker ]
@@ -68,6 +70,7 @@ test:1.0:
       println("(", cl/tl*100, "%) covered")'
 
 test:1.6:
+  stage: test
   image: julia:1.6
   # Use `docker` runners
   tags: [ docker ]
-- 
GitLab