Skip to content

test: isolate probe timeout and finish MCP signature parity #18

test: isolate probe timeout and finish MCP signature parity

test: isolate probe timeout and finish MCP signature parity #18

Workflow file for this run

# CI for the Java 21 / Jackson 3 line.
name: CI
on:
push:
branches: [feature/3.0.x, hardening/3.0.x]
pull_request:
branches: [feature/3.0.x]
workflow_dispatch:
permissions:
contents: read
jobs:
build:
name: JDK 21 Build & Verify
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout source
uses: actions/checkout@v7
- name: Set up JDK 21
uses: actions/setup-java@v5
with:
distribution: temurin
java-version: '21'
cache: maven
- name: Build and verify
run: ./mvnw -B --no-transfer-progress clean verify
- name: Upload JaCoCo coverage report
if: always()
uses: actions/upload-artifact@v7
with:
name: jacoco-coverage
path: target/site/jacoco
retention-days: 14
- name: Upload surefire reports
if: always()
uses: actions/upload-artifact@v7
with:
name: surefire-reports
path: target/surefire-reports
retention-days: 14