Skip to content

v0.3.0 — A2A AgentCard + DNS TXT, four-language parity #13

v0.3.0 — A2A AgentCard + DNS TXT, four-language parity

v0.3.0 — A2A AgentCard + DNS TXT, four-language parity #13

Workflow file for this run

name: Rust CI
on:
push:
branches: [main]
paths: ['crates/**', 'Cargo.toml', 'Cargo.lock']
pull_request:
paths: ['crates/**', 'Cargo.toml', 'Cargo.lock']
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
rust: [stable, '1.86']
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}
components: clippy, rustfmt
- run: cargo fmt --check
if: matrix.rust == 'stable'
- run: cargo clippy --workspace -j2 -- -D warnings
if: matrix.rust == 'stable'
- run: cargo test --workspace -j2
- run: cargo test --workspace -j2 --features fetch