gilde-ci-cd/maven-verify-template.gitlab-ci.yml
2021-07-06 14:24:10 +02:00

13 lines
266 B
YAML

.maven-test:
image: $MAVEN_IMAGE
stage: test
allow_failure: true
script:
- mvn $MAVEN_CLI_OPTS verify
artifacts:
expire_in: 2 weeks
reports:
junit:
- target/surefire-reports/TEST-*.xml
- target/failsafe-reports/TEST-*.xml