Skip to content

AGENTS.md: use the repo's real working directory as the Agent Mail pr… #82

AGENTS.md: use the repo's real working directory as the Agent Mail pr…

AGENTS.md: use the repo's real working directory as the Agent Mail pr… #82

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
rust:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: Cache cargo artifacts
uses: Swatinem/rust-cache@v2
- name: Check formatting
run: cargo fmt --check
- name: Run Clippy
run: cargo clippy --all-targets -- -D warnings
- name: Run tests
run: cargo test
- name: Smoke doctor surface
run: |
cargo run --locked -- --robot-triage
cargo run --locked -- capabilities --json
cargo run --locked -- robot-docs guide
cargo run --locked -- doctor health
cargo run --locked -- doctor capabilities --json
cargo run --locked -- doctor robot-docs
cargo run --locked -- doctor --robot-triage