Skip to content

Fix issue with lifecycle hooks concurrently modifying the underlying … #58

Fix issue with lifecycle hooks concurrently modifying the underlying …

Fix issue with lifecycle hooks concurrently modifying the underlying … #58

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'microsoft'
cache: 'maven'
- name: Set up Maven
uses: stCarolas/setup-maven@v5
with:
maven-version: 3.9.8
- name: Build with Maven
run: mvn clean install