Skip to content

Bump org.junit.jupiter:junit-jupiter-api from 5.11.4 to 5.12.0 #8

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

Bump org.junit.jupiter:junit-jupiter-api from 5.11.4 to 5.12.0 #8

Workflow file for this run

name: build and test
on:
pull_request:
types:
- opened
- synchronize
- reopened
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '8', '11', '17', '21' ]
architecture: [ 'x64' ]
name: Build with JDK ${{ matrix.java }} on ${{ matrix.architecture }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: '${{ matrix.java }}'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn --batch-mode --update-snapshots verify