Skip to content

Commit

Permalink
checkstyle added
Browse files Browse the repository at this point in the history
  • Loading branch information
Ganesh Tiwari committed Jan 21, 2020
1 parent 4e6885f commit b72b585
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
image: maven:3.6-jdk-11

include:
- template: Code-Quality.gitlab-ci.yml

stages:
- validate
- compile
- test

validate:
stage: validate
script:
- mvn validate

checkstyle:
stage: validate
script:
- mvn checkstyle:check
allow_failure: true

compile:
stage: compile
script:
- mvn compile

test:
stage: test
script:
- mvn test -B

0 comments on commit b72b585

Please sign in to comment.