agentmail 0.2.1

IMAP email client, MCP server, and CLI — read, search, delete, unsubscribe, and manage mailboxes
Documentation
name: CI Agent Mail

on:
  push:
    branches: [main]
  pull_request:
    branches: [main]

jobs:
  ci:
    uses: weekendsuperhero-io/platform-tools/.github/workflows/reusable-rust-ci.yml@main
    with:
      check-os-json: '["ubuntu-latest","macos-latest","windows-latest"]'
      rust-cache-provider: github
      docs-os: ubuntu-latest
      linux-packages: "libdbus-1-dev pkg-config"
      build-matrix-json: "[]"
      # Run nextest when available (preferred runner + .config/nextest.toml).
      # Falls back to `cargo test` if nextest is unavailable or on Windows.
      # This still runs all tests including tests/proptest_draft.rs.
      test-command: cargo nextest run --all-features --profile ci || cargo test --all-features