Skip to content

feat(mcp): persist every screenshot, not just over-cap captures #142

feat(mcp): persist every screenshot, not just over-cap captures

feat(mcp): persist every screenshot, not just over-cap captures #142

Workflow file for this run

name: Rustwright Tests
on:
pull_request:
push:
jobs:
test:
name: cargo core, CLI, and MCP
# Matches the development repo's runner. The mcp suite includes
# Chromium race/stability tests that hold green on this runner class but
# produce false failures on ubuntu-latest.
runs-on: blacksmith-2vcpu-ubuntu-2404
steps:
- name: Check out repository
uses: actions/checkout@v7.0.1
- name: Set up Rust
uses: dtolnay/rust-toolchain@stable
- name: Cargo check (core workspace)
run: cargo check --locked
- name: Cargo test (core workspace)
run: cargo test --locked
- name: Cargo test (CLI)
run: cargo test --manifest-path cli/Cargo.toml --locked
- name: Cargo test (MCP)
run: cargo test --manifest-path mcp/Cargo.toml --locked