build(deps): bump version.mockito from 5.16.1 to 5.17.0 #351
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: CI | |
| on: | |
| push: | |
| branches: | |
| - '*' | |
| pull_request: | |
| branches: | |
| - '*' | |
| merge_group: | |
| types: [ checks_requested ] | |
| jobs: | |
| ci: | |
| runs-on: ${{ matrix.os }} | |
| timeout-minutes: 30 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - ubuntu-latest | |
| # Keep this list as: all supported LTS JDKs, the latest GA JDK, and the latest EA JDK (optional). | |
| # Reference: https://adoptium.net/support/ | |
| java: | |
| - 17 | |
| - 21 | |
| - 24 | |
| container: | |
| - wildfly-managed | |
| - glassfish-managed | |
| - tomee-managed | |
| exclude: | |
| # GlassFish 7 does not start on Java 24 | |
| # https://github.com/eclipse-ee4j/glassfish/issues/25437 | |
| - java: 24 | |
| container: glassfish-managed | |
| # TomEE does not launch on Java 24 | |
| # https://issues.apache.org/jira/browse/TOMEE-4474 | |
| - java: 24 | |
| container: tomee-managed | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up JDK ${{ matrix.java }} | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: temurin | |
| java-version: ${{ matrix.java }} | |
| cache: maven | |
| - name: Build with Maven | |
| run: ./mvnw --batch-mode --no-transfer-progress --activate-profiles ${{ matrix.container }} clean verify | |
| - uses: actions/upload-artifact@v4 | |
| if: failure() | |
| with: | |
| name: surefire-${{ matrix.os }}-${{ matrix.java }}-${{ matrix.container }} | |
| path: '**/surefire-reports/*.txt' |