playwrightjava1/bitbucket-pipelines.yml
2023-01-27 13:07:05 +00:00

23 lines
641 B
YAML

# 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