diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index bf17c7098b114e498b87600be1cb292ab1237976..c20e7cea206655affc9c2f7681be7b36db680c1c 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 ]