fix: restore hermetic Java SDK verification baseline #54
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: CI | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| build: | |
| name: Unit build (no server required) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Java 17 | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: temurin | |
| java-version: '17' | |
| cache: maven | |
| # `verify` compiles, runs the unit tests, packages and runs SpotBugs. | |
| # Integration tests (*IT) are skipped unless -Pintegration is requested, | |
| # so this job never needs a broker. | |
| - name: Build, unit test and static analysis | |
| run: mvn --batch-mode verify | |
| - name: Build testcontainers module | |
| run: mvn --batch-mode verify | |
| working-directory: testcontainers |