# Template maven-build # This template allows you to test and build your Java project with Maven. # The workflow allows running tests, code checkstyle and security scans on the default branch. # Prerequisites: pom.xml and appropriate project structure should exist in the repository. pipelines: default: - parallel: - step: runs-on: - self.hosted - macos name: Run Webtests caches: - maven script: - mvn -B verify --file pom.xml - mvn compiler:compile - mvn compiler:testCompile - mvn surefire:test