Skip to content

Bump org.apache.maven.plugins:maven-surefire-plugin from 3.2.1 to 3.2.2 #130

Bump org.apache.maven.plugins:maven-surefire-plugin from 3.2.1 to 3.2.2

Bump org.apache.maven.plugins:maven-surefire-plugin from 3.2.1 to 3.2.2 #130

Workflow file for this run

name: Maven build
on:
workflow_dispatch:
pull_request:
branches: [ main ]
env:
JAVA_VERSION: '19'
JAVA_DISTRO: 'zulu'
jobs:
Build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Java
uses: actions/setup-java@v3
with:
java-version: ${{ env.JAVA_VERSION }}
distribution: ${{ env.JAVA_DISTRO }}
cache: 'maven'
- name: Build with Maven
run: mvn verify -B -ntp