Bump com.uber.nullaway:nullaway from 0.13.0 to 0.13.1 #338
Workflow file for this run
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: matrix CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - 'releases/*' | |
| pull_request: | |
| branches: | |
| - '*' | |
| jobs: | |
| build: | |
| strategy: | |
| # https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstrategyfail-fast | |
| fail-fast: false | |
| # https://docs.github.com/en/actions/using-jobs/using-a-matrix-for-your-jobs | |
| matrix: | |
| # https://github.com/actions/setup-java#supported-distributions | |
| javaversion: [ '21' ] | |
| javadistribution: ['adopt', 'adopt-openj9', 'corretto', 'dragonwell', 'liberica', 'microsoft', 'temurin', 'zulu'] # internally 'adopt-hotspot' is the same as 'adopt' | |
| # https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources | |
| os: [macos-latest, ubuntu-latest, windows-latest] | |
| exclude: | |
| - javadistribution: 'microsoft' | |
| os: 'macos-latest' | |
| - javadistribution: 'dragonwell' | |
| os: 'macos-latest' | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up JDK ${{ matrix.javaversion }} ${{ matrix.javadistribution }} | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: ${{ matrix.javaversion }} | |
| distribution: ${{ matrix.javadistribution }} | |
| cache: maven | |
| - name: Build with Maven | |
| run: mvn -B "-Dnet.ladenthin.bitcoinaddressfinder.disableLMDBTest=false" --update-snapshots test --file pom.xml | |
| - name: Upload Surefire Reports and JVM Crash Logs | |
| if: always() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: surefire-reports-${{ matrix.os }}-${{ matrix.javadistribution }}-java${{ matrix.javaversion }} | |
| path: | | |
| target/surefire-reports/** | |
| hs_err_pid*.log |