From 2a7456c4a238f5c32fc2eb3cf537683f119ceabe Mon Sep 17 00:00:00 2001
From: Andreas Romeyke <andreas.romeyke@slub-dresden.de>
Date: Mon, 14 Apr 2025 09:21:23 +0200
Subject: [PATCH] - enable SAST, Spotbugs  and secret detection

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

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 2f09c2c..8112c4e 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -59,6 +59,14 @@ test-job:
   script:
     - ROSETTASDK=$ROSETTASDK mvn test
 
+bughunting-job:
+  stage: test
+  timeout: 3h
+  tags:
+    - "docker"
+  script:
+    - ROSETTASDK=$ROSETTASDK mvn spotbugs:check
+
 packaging-job:
   stage: packaging
   timeout: 3h
@@ -69,3 +77,7 @@ packaging-job:
   artifacts:
     paths:
       - target/*.jar
+
+include:
+  - template: Security/Secret-Detection.gitlab-ci.yml
+  - template: Security/SAST.gitlab-ci.yml
-- 
GitLab