Skip to content

docs(agent): scripting feature in README + lib.rs + project CLAUDE.md #571

docs(agent): scripting feature in README + lib.rs + project CLAUDE.md

docs(agent): scripting feature in README + lib.rs + project CLAUDE.md #571

Workflow file for this run

name: Lint
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
jobs:
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-lint-${{ hashFiles('**/Cargo.lock') }}
- name: Clippy (default features)
run: cargo clippy --workspace -- -D warnings
- name: Clippy (chrome)
run: cargo clippy -p spider --features chrome -- -D warnings
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check formatting
run: cargo fmt --all -- --check