Skip to content

appended traceable to build step names (#68) #71

appended traceable to build step names (#68)

appended traceable to build step names (#68) #71

Workflow file for this run

name: Build and Validate Jenkins Plugin
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'adopt'
server-id: github
server-username: ${{ github.actor }}
server-password: ${{ secrets.GITHUB_TOKEN }}
overwrite-settings: true
- name: Build with Maven
run: mvn -B package --file pom.xml
- name: Run Spotless checks
run: mvn spotless:check