Skip to content

Bump surefire-plugin.version from 3.1.2 to 3.2.2 #222

Bump surefire-plugin.version from 3.1.2 to 3.2.2

Bump surefire-plugin.version from 3.1.2 to 3.2.2 #222

Workflow file for this run

name: "CI Build"
on:
push:
branches: [ main ]
paths-ignore:
- 'README.md'
- 'LICENSE'
- '.github/dependabot.yml'
pull_request:
branches: [ main ]
paths-ignore:
- 'README.md'
- 'LICENSE'
- '.github/dependabot.yml'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
java: [ '11' ]
steps:
- uses: actions/checkout@v3
- name: Install JDK ${{ matrix.java }}
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: ${{ matrix.java }}
cache: maven
- name: Build with Maven
run: export LANG=en_US && mvn -B clean install