Skip to content

Bump org.junit.jupiter:junit-jupiter from 5.11.1 to 5.11.2 #262

Bump org.junit.jupiter:junit-jupiter from 5.11.1 to 5.11.2

Bump org.junit.jupiter:junit-jupiter from 5.11.1 to 5.11.2 #262

Workflow file for this run

name: Maven build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: ['8', '11', '17', '21']
name: Java ${{ matrix.java }} build
steps:
- uses: actions/checkout@v4
- name: Set up Java
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: 'adopt'
- name: Build with Maven
run: mvn -B --file pom.xml package jacoco:report
- name: Coveralls
uses: coverallsapp/github-action@v2
if: matrix.java == '8' && github.event_name != 'pull_request'
with:
base-path: src/main/java
# The file is optional, but the documentation says it's better to specify it.
file: target/site/jacoco/jacoco.xml