Skip to content

Bump org.apache.maven.plugins:maven-surefire-report-plugin from 2.12 to 3.2.3 in /org.eclipse.lyo.testsuite.build #105

Bump org.apache.maven.plugins:maven-surefire-report-plugin from 2.12 to 3.2.3 in /org.eclipse.lyo.testsuite.build

Bump org.apache.maven.plugins:maven-surefire-report-plugin from 2.12 to 3.2.3 in /org.eclipse.lyo.testsuite.build #105

Workflow file for this run

# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: CI
on:
push:
branches: [master, main]
pull_request:
branches: [master, main]
schedule:
- cron: "30 4 * * 5" # catch SNAPSHOT breaking changes
jobs:
build:
strategy:
fail-fast: false
matrix:
jdk: [8, 11, 17, 21]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.jdk }}
distribution: 'zulu'
- uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build with Maven
run: mvn -B package --file org.eclipse.lyo.testsuite.build/pom.xml