Skip to content

Bump org.junit:junit-bom from 5.10.2 to 5.10.3 (#217) #389

Bump org.junit:junit-bom from 5.10.2 to 5.10.3 (#217)

Bump org.junit:junit-bom from 5.10.2 to 5.10.3 (#217) #389

Workflow file for this run

name: build
on:
pull_request:
branches:
- main
push:
paths-ignore:
- '**.md'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '11', '17', '19', '20' ]
architecture: [ 'x64' ]
name: Build with JDK ${{ matrix.java }} on ${{ matrix.architecture }}
steps:
- uses: actions/checkout@v4
- name: Setup JDK
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: ${{ matrix.java }}
architecture: ${{ matrix.architecture }}
cache: 'maven'
- name: Build with Maven
run: mvn --no-transfer-progress --batch-mode verify