Skip to content

Bump com.puppycrawl.tools:checkstyle from 9.3 to 10.18.2 #630

Bump com.puppycrawl.tools:checkstyle from 9.3 to 10.18.2

Bump com.puppycrawl.tools:checkstyle from 9.3 to 10.18.2 #630

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"