Skip to content

Bump org.junit.jupiter:junit-jupiter from 5.11.3 to 5.11.4 (#286) #561

Bump org.junit.jupiter:junit-jupiter from 5.11.3 to 5.11.4 (#286)

Bump org.junit.jupiter:junit-jupiter from 5.11.3 to 5.11.4 (#286) #561

Workflow file for this run

name: Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
distribution: zulu
java-version: 11
- name: Build with Maven
run: mvn clean install
- name: Test coverage Report
run: mvn jacoco:prepare-agent test jacoco:report
- uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}