Update plugin com.github.spotbugs to v6.0.19 #646
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: | |
branches: [ master ] | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java-version: [ 8, 11, 17, 21 ] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
# The target JDK is used to build, the latest one to run Gradle itself | |
java-version: | | |
${{ matrix.java-version }} | |
21 | |
- run: ./gradlew assemble check --info | |
env: | |
JAVA_TOOLCHAIN: ${{ matrix.java-version }} |