FabledSkyBlock/.gitlab-ci.yml

16 lines
169 B
YAML
Raw Normal View History

2020-06-15 03:16:31 +02:00
image: maven:latest
2020-06-15 03:07:08 +02:00
cache:
paths:
2020-06-15 03:16:31 +02:00
- .m2/repository/
- target/
2020-06-15 03:07:08 +02:00
2020-06-15 03:16:31 +02:00
build:
stage: build
2020-06-15 03:07:08 +02:00
script:
2020-06-15 03:18:23 +02:00
- mvn compile
2020-06-15 03:07:08 +02:00
2020-06-15 03:16:31 +02:00
test:
stage: test
2020-06-15 03:07:08 +02:00
script:
2020-06-15 03:18:23 +02:00
- mvn test