Skip to content

Bump org.junit.jupiter:junit-jupiter-api from 5.11.3 to 5.11.4 #135

Bump org.junit.jupiter:junit-jupiter-api from 5.11.3 to 5.11.4

Bump org.junit.jupiter:junit-jupiter-api from 5.11.3 to 5.11.4 #135

Workflow file for this run

name: codecov
on:
push:
branches: [ "*" ]
pull_request:
branches: [ "*" ]
jobs:
codecov:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 17
- uses: actions/cache@v4
with:
path: ~/.m2/repository
key: maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
maven-
- run: |
mvn clean install
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
files: ./target/site/jacoco/jacoco.xml
fail_ci_if_error: false