Skip to content

Instantly share code, notes, and snippets.

View jaydubb12's full-sized avatar

Jason Wolf jaydubb12

  • BORN Group
  • United States
View GitHub Profile
@jaydubb12
jaydubb12 / bitbucket-pipeline.yml
Last active August 11, 2022 19:40
PIpeline that will build a maven project and run static analysis for all pull requests
# Build and perform static analysis
# Env tools - Maven 3.8.5 && Java 18
image: maven:3.8.5-openjdk-18-slim
pipelines:
pull-requests: # trigger event is a new || updated PR
'**': #this runs as default for any branch not elsewhere defined
- step:
name: Build front end & perform static analysis