add detection of UTAO_JUNIT_ASSERTION_ODDITIES_NESTED_STATIC_CLASS #237
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: Java CI | |
| on: [workflow_dispatch, push, pull_request] | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| java: [17, 21, 25] | |
| distribution: ['temurin'] | |
| fail-fast: false | |
| max-parallel: 4 | |
| name: Test JDK ${{ matrix.java }}, ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up JDK ${{ matrix.java }} ${{ matrix.distribution }} | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: ${{ matrix.java }} | |
| distribution: ${{ matrix.distribution }} | |
| - name: Test with Maven | |
| run: ./mvnw clean install -B -V --no-transfer-progress -D"license.skip=true" -D"cpd.skip=true" -D"spotbugs.skip=true" -D"pmd.skip=true" |