Files
EasyDrop/.gitlab-ci.yml
2023-05-11 10:31:25 +00:00

22 lines
285 B
YAML

image: maven:3.9.1-eclipse-temurin-17
cache:
paths:
- .m2/repository
stages:
- build
- test
build:
stage: build
script:
- echo "Maven Build started..."
- "mvn compile"
test:
stage: test
script:
- echo "Maven Test started..."
- "mvn test"