Skip to content

Bump com.github.spotbugs:spotbugs-maven-plugin from 4.8.6.5 to 4.8.6.… #679

Bump com.github.spotbugs:spotbugs-maven-plugin from 4.8.6.5 to 4.8.6.…

Bump com.github.spotbugs:spotbugs-maven-plugin from 4.8.6.5 to 4.8.6.… #679

Workflow file for this run

name: build
on: [ push, pull_request ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: '8'
distribution: 'zulu'
- name: Test
run: "mvn cobertura:cobertura --file pom.xml"
- name: CodeCov
run: "bash <(curl -s https://codecov.io/bash)"
- name: SpotBugs
run: "mvn com.github.spotbugs:spotbugs-maven-plugin:check"
- name: Checkstyle
run: "mvn checkstyle:check -Dcheckstyle.violationSeverity=warning -Dcheckstyle.violation.ignore=AbbreviationAsWordInName,MissingJavadocType,SummaryJavadoc"