Skip to content

docs(readme): 📝 clarify heading-intent scoring behavior #5

docs(readme): 📝 clarify heading-intent scoring behavior

docs(readme): 📝 clarify heading-intent scoring behavior #5

Workflow file for this run

name: ci
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
jobs:
rust-checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: Format check
run: cargo fmt --check
- name: Clippy
run: cargo clippy --all-targets --all-features -- -D warnings
- name: Test
run: cargo test
- name: Build release
run: cargo build --release