Skip to content

Merge pull request #627 from clusterbench/dependabot/maven/integratio… #450

Merge pull request #627 from clusterbench/dependabot/maven/integratio…

Merge pull request #627 from clusterbench/dependabot/maven/integratio… #450

Workflow file for this run

name: CI
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
merge_group:
types: [ checks_requested ]
permissions:
contents: read
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- macos-latest
- ubuntu-latest
- windows-latest
# Keep this list as: all supported LTS JDKs, the latest GA JDK, and optionally the latest EA JDK (if available).
# Reference: https://adoptium.net/support/
java:
- 17
- 21
- 25
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v5
with:
distribution: temurin
java-version: ${{ matrix.java }}
cache: maven
- name: Build with Maven
run: ./mvnw --batch-mode --no-transfer-progress verify
- uses: actions/upload-artifact@v4
if: failure()
with:
name: test-reports-${{ matrix.os }}-${{ matrix.java }}
path: |
**/surefire-reports/*
**/failsafe-reports/*