diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000000000000000000000000000000000000..2477301fb6f7491d7e05ffcff8f67740bf2ff202 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,14 @@ +stages: + - 🔎 quality + +junit: + stage: 🔎 quality + image: maven + coverage: '/Total.*?([0-9]{1,3})%/' + script: + - mvn test jacoco:report + - cat target/site/jacoco/index.html + artifacts: + reports: + junit: "target/surefire-reports/*.xml" +