Skip to content

Bump junit.jupiter.version from 5.10.2 to 5.10.3 #535

Bump junit.jupiter.version from 5.10.2 to 5.10.3

Bump junit.jupiter.version from 5.10.2 to 5.10.3 #535

Workflow file for this run

name: Java Tests
on: [push]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04]
java: [11, 17, 18]
fail-fast: false
name: Test on JDK ${{ matrix.java }}, ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: adopt
- name: Test with Maven
run: mvn -B --file pom.xml test
- name: Verify with Maven
run: mvn -B -f pom.xml verify