Update .gitlab-ci.yml file

This commit is contained in:
Marvin Scham
2023-05-11 10:31:25 +00:00
parent b2aad8e3d2
commit 69643077a7

21
.gitlab-ci.yml Normal file
View File

@@ -0,0 +1,21 @@
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"