Skip to content

Bump com.github.spotbugs from 5.0.14 to 5.1.1 #34

Bump com.github.spotbugs from 5.0.14 to 5.1.1

Bump com.github.spotbugs from 5.0.14 to 5.1.1 #34

Workflow file for this run

name: Java CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 1.8
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '8.0.345+1'
- name: Build with Gradle
run:
./gradlew build
- name: Checkstyle & static check
run: |
./gradlew --info checkstyle
./gradlew --info check
- name: Spotbugs
run: |
./gradlew spotbugsMain spotbugsTest