Build commit 4e7d31963a267b5821fe739472cf1372dccd720a on branch refs/heads/dependabot/maven/develop/com.github.spotbugs-spotbugs-maven-plugin-4.8.6.0 #405
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: snapshot-workflow | |
run-name: Build commit ${{ github.sha }} on branch ${{ github.ref }} | |
on: | |
push: | |
branches-ignore: | |
- main | |
pull_request: | |
jobs: | |
build-snapshot: | |
name: Build Snapshot | |
runs-on: ubuntu-22.04 | |
steps: | |
- run: echo "This job was automatically triggered by a ${{ github.event_name }} event." | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-package: 'jdk' | |
java-version: '22' | |
check-latest: true | |
cache: 'maven' | |
- name: Build & Test | |
run: | | |
mvn -B -U clean package |