Skip to content

Bump org.apache.maven.plugins:maven-site-plugin from 3.12.1 to 3.21.0 #157

Bump org.apache.maven.plugins:maven-site-plugin from 3.12.1 to 3.21.0

Bump org.apache.maven.plugins:maven-site-plugin from 3.12.1 to 3.21.0 #157

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 11
uses: actions/setup-java@v5
with:
java-version: '11'
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