Bump org.mockito:mockito-core from 5.21.0 to 5.22.0 #386
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: Build | |
| on: push | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| name: Compile, test, and package modules | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Install JDK | |
| uses: actions/setup-java@v5 | |
| with: | |
| java-version: 11 | |
| distribution: temurin | |
| cache: maven | |
| - name: Compile, test, and package modules | |
| env: | |
| MAVEN_OPTS: '-Dorg.slf4j.simpleLogger.showDateTime=true -Djava.wat.headless=true' | |
| run: ./mvnw --batch-mode --errors --fail-at-end --no-transfer-progress --show-version verify | |
| - name: Generate coverage report | |
| uses: codecov/codecov-action@v4 | |
| with: | |
| file: ./**/target/site/jacoco/jacoco.xml | |
| name: codecov |