Bump org.apache.maven.plugins:maven-gpg-plugin from 3.2.4 to 3.2.5 (#… #615
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: 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" |