From 9b76b1ec63e0c54eb6e648b0a5e76cfdc06b6562 Mon Sep 17 00:00:00 2001
From: Daniel <d.hornung@indiscale.com>
Date: Thu, 3 Mar 2022 16:10:16 +0100
Subject: [PATCH] MAINT: Parallelizing pipeline.

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

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 6a322e13..1dc09269 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -39,6 +39,7 @@ stages:
 code_style:
   tags: [ docker ]
   stage: code_style
+  needs: [ ]
   script:
     - make style
   allow_failure: true
@@ -47,6 +48,7 @@ code_style:
 pylint:
   tags: [ docker ]
   stage: linting
+  needs: [ ]
   script:
     - make lint
   allow_failure: true
@@ -55,6 +57,7 @@ pylint:
 unittest:
   tags: [ docker ]
   stage: test
+  needs: [ ]
   script:
     - touch ~/.pycaosdb.ini
     - make unittest
-- 
GitLab