summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 7c2efb056c3a78cb25085b952c14de055521d40e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# attempt at ci

image: maven:3-jdk-8


build:
    stage: build
    script: "mvn clean -B"
    script: "mvn compile -B"

    
test:
    stage: test
    script: "mvn verify"