Skip to content

Add Queued A2A protocol adapter (A2A over RabbitMQ / Azure Service Bu… #16

Add Queued A2A protocol adapter (A2A over RabbitMQ / Azure Service Bu…

Add Queued A2A protocol adapter (A2A over RabbitMQ / Azure Service Bu… #16

Workflow file for this run

name: CI
on:
push:
branches: [main]
paths:
- 'src/**'
- 'tests/**'
- '*.props'
- '*.slnx'
pull_request:
branches: [main]
paths:
- 'src/**'
- 'tests/**'
- '*.props'
- '*.slnx'
jobs:
build-and-test:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '10.0.x'
- name: Restore
run: dotnet restore
- name: Build
run: dotnet build --no-restore --configuration Release
- name: Test
run: dotnet test --no-build --configuration Release