Skip to content

build(deps): bump the logging group across 1 directory with 2 updates #7

build(deps): bump the logging group across 1 directory with 2 updates

build(deps): bump the logging group across 1 directory with 2 updates #7

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
name: Build & Test (JDK ${{ matrix.java }})
strategy:
matrix:
java: [ '25' ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
cache: 'maven'
- name: Build & Test
run: mvn -B clean verify --no-transfer-progress
- name: Upload test results
if: always()
uses: actions/upload-artifact@v4
with:
name: test-results-jdk${{ matrix.java }}
path: '**/target/surefire-reports/*.xml'
retention-days: 7