update spotbugs #70
This file contains hidden or 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: Test Changes | |
| on: [push, pull_request] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| # Build/test across the JDK range the library supports (Java 8 floor). | |
| java-version: ['8', '11', '17', '21'] | |
| name: Test (JDK ${{ matrix.java-version }}) | |
| steps: | |
| - name: Clone Repository | |
| uses: actions/checkout@v6 | |
| - uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'temurin' | |
| java-version: ${{ matrix.java-version }} | |
| - name: Test | |
| run: mvn install -Dgpg.skip=true -B -V | |
| env: | |
| TB_KEY: ${{ secrets.TB_KEY }} | |
| TB_SECRET: ${{ secrets.TB_SECRET }} |