Skip to content

Replace JMock with modern Mockito #164

Replace JMock with modern Mockito

Replace JMock with modern Mockito #164

Workflow file for this run

# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI with Maven
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Git Checkout
uses: actions/checkout@v6
- name: Setup JDK 17
uses: actions/setup-java@v5
with:
java-version: '17'
distribution: 'adopt'
cache: maven
- name: Start Redis Server
uses: supercharge/redis-github-action@1.8.1
- name: Run Tests
run: mvn clean test jacoco:report -Dgithub=true
- name: Upload Test Coverage Report
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./target/site/jacoco/jacoco.xml
flags: unit-tests
fail_ci_if_error: true
verbose: true