Skip to content

Bump org.apache.maven.plugins:maven-surefire-plugin from 3.1.2 to 3.2.5 #668

Bump org.apache.maven.plugins:maven-surefire-plugin from 3.1.2 to 3.2.5

Bump org.apache.maven.plugins:maven-surefire-plugin from 3.1.2 to 3.2.5 #668

Workflow file for this run

name: build
on: [pull_request]
jobs:
build:
if: github.repository_owner == 'hazelcast'
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '11' ]
architecture: [ 'x64' ]
distribution: [ 'adopt' ]
name: Build
steps:
- uses: actions/checkout@v4
- name: Setup JDK
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
architecture: ${{ matrix.architecture }}
distribution: ${{ matrix.distribution }}
cache: 'maven'
- name: Build with Maven
run: ./mvnw clean package -V -B -P checkstyle,findbugs