Skip to content

feat: add architecture SVG diagram, replace ASCII art in README and docs #53

feat: add architecture SVG diagram, replace ASCII art in README and docs

feat: add architecture SVG diagram, replace ASCII art in README and docs #53

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
jobs:
pre-commit:
name: pre-commit (fmt, clippy, secrets, hygiene)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # gitleaks needs full history
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy, rustfmt
- uses: actions/setup-python@v5
with:
python-version: "3.13"
- uses: actions/setup-node@v4
with:
node-version: "20"
- uses: pre-commit/action@v3.0.1
test:
name: test (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo build --release
- run: cargo test --all