Skip to content

Bump org.apache.maven.plugins:maven-surefire-plugin from 3.5.1 to 3.5… #301

Bump org.apache.maven.plugins:maven-surefire-plugin from 3.5.1 to 3.5…

Bump org.apache.maven.plugins:maven-surefire-plugin from 3.5.1 to 3.5… #301

Workflow file for this run

name: build
on:
push:
branches:
- version/**
pull_request:
branches:
- version/**
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '8', '11', '17', '21', '22', '23', '24-ea' ]
architecture: [ 'x64' ]
fail-fast: false
name: Build with JDK ${{ matrix.java }} on ${{ matrix.architecture }}
steps:
- uses: actions/checkout@v4
- name: Setup JDK
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
architecture: ${{ matrix.architecture }}
cache: 'maven'
- name: Build with Maven
run: mvn test