Skip to content

build(deps-dev): Update a2a-sdk requirement from <1.0.0,>=0.3.0 to >=0.3.0,<2.0.0 #5

build(deps-dev): Update a2a-sdk requirement from <1.0.0,>=0.3.0 to >=0.3.0,<2.0.0

build(deps-dev): Update a2a-sdk requirement from <1.0.0,>=0.3.0 to >=0.3.0,<2.0.0 #5

Workflow file for this run

name: Unit Tests
on:
push:
branches: [main]
paths:
- 'src/**'
- 'tests/**'
- '.github/workflows/**'
- 'pyproject.toml'
pull_request:
paths:
- 'src/**'
- 'tests/**'
- '.github/workflows/**'
- 'pyproject.toml'
workflow_dispatch:
jobs:
run-unit-tests:
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ['3.11', '3.12', '3.13']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v5
- uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python-version }}
activate-environment: true
- run: uv sync -U --group tests --extra all
- run: pytest tests/unit tests/snapshots -v --cov --cov-report=xml
- name: Upload coverage reports to Codecov
if: always()
uses: codecov/codecov-action@v6
with:
token: ${{ secrets.CODECOV_TOKEN }}