From a73b938f6ce820226a94db9dc82427bae9ed1bfe Mon Sep 17 00:00:00 2001 From: Olivier Maury <Olivier.Maury@inrae.fr> Date: Wed, 26 Feb 2025 14:40:11 +0100 Subject: [PATCH] =?UTF-8?q?build(ci):=20utiliser=20les=20cibles=20check=20?= =?UTF-8?q?pour=20les=20v=C3=A9rifications=20Checkstyle,=20PMD=20et=20CPD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 097ea7b..e00da6b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -70,19 +70,19 @@ checkstyle_job: stage: code-check needs: ["install_job"] script: - - mvn checkstyle:checkstyle + - mvn checkstyle:check pmd_job: stage: code-check needs: ["install_job"] script: - - mvn pmd:pmd + - mvn pmd:check cpd_job: stage: code-check needs: ["install_job"] script: - - mvn pmd:cpd + - mvn pmd:cpd-check cobertura_job: stage: deploy -- GitLab