Skip to content

fix: Remove newly added exceptionally handling in JdkA2AHttpClient #156

fix: Remove newly added exceptionally handling in JdkA2AHttpClient

fix: Remove newly added exceptionally handling in JdkA2AHttpClient #156

name: Build and Test
on:
# Handle all branches for now
push:
pull_request:
workflow_dispatch:
# Only run the latest job
concurrency:
group: '${{ github.workflow }} @ ${{ github.head_ref || github.ref }}'
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java-version: ['17', '21']
steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java-version }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java-version }}
distribution: 'temurin'
cache: maven
- name: Build with Maven and run tests
run: mvn -B package --file pom.xml -fae