Skip to content

chore: Remove bogus org.eclipse.m2e:lifecycle-mapping plugin #118

chore: Remove bogus org.eclipse.m2e:lifecycle-mapping plugin

chore: Remove bogus org.eclipse.m2e:lifecycle-mapping plugin #118

Workflow file for this run

name: CI
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
# Keep this list as: all supported LTS JDKs, the latest GA JDK, and optionally the latest EA JDK (if available).
# https://www.oracle.com/java/technologies/java-se-support-roadmap.html
java: [ 11, 17, 21, 23 ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: ${{ matrix.java }}
- name: Cache local Maven repository
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build with Maven using JDK ${{ matrix.java }}
run: mvn --batch-mode --no-transfer-progress verify
- name: Archive Failsafe Reports
if: failure()
uses: actions/upload-artifact@v4
with:
name: ${{ runner.os }}-${{ matrix.java }}-failsafe-reports
path: '**/target/failsafe-reports/*.xml'