From 9560cecf526e782128095e74883a609b60c2a826 Mon Sep 17 00:00:00 2001
From: Andreas Romeyke <andreas.romeyke@slub-dresden.de>
Date: Fri, 30 Aug 2024 13:28:25 +0200
Subject: [PATCH] fixed syntax

---
 .gitlab-ci.yml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 42865b3..223fc1d 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -72,8 +72,8 @@ perl-unit-test-job:   # This job runs in the test stage.
       - "docker"
     script:
       - prove -l t/
-    depends:
-      build-env-job
+    dependencies:
+      - build-env-job
 
 perl-quality-test-job:   # This job runs in the test stage.
     stage: pretest    # It only starts when the job in the build stage completes successfully.
@@ -82,5 +82,5 @@ perl-quality-test-job:   # This job runs in the test stage.
       - "docker"
     script:
       - prove -l xt/
-    depends:
-      build-env-job
+    dependencies:
+      - build-env-job
-- 
GitLab