Skip to content

Bump junit.version from 5.11.0 to 5.11.1 #242

Bump junit.version from 5.11.0 to 5.11.1

Bump junit.version from 5.11.0 to 5.11.1 #242

Workflow file for this run

name: Java CI
on: [push, pull_request]
jobs:
build:
name: Test with Java ${{ matrix.jdk }}
#runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
jdk: ['8', '11', '17', '22']
#os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.jdk }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.jdk }}
distribution: temurin
cache: maven
- name: Build with Maven
run: mvn -B package --file pom.xml