Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/workflows/quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:
required: true
type: string

permissions:
contents: read

env:
CARGO_TERM_COLOR: always

Expand All @@ -18,6 +21,13 @@ jobs:
steps:
- uses: actions/checkout@v5

- uses: taiki-e/install-action@v2
with:
tool: typos@1.49.0

- name: Typos
run: typos

- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
Expand Down
2 changes: 2 additions & 0 deletions _typos.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[files]
extend-exclude = ["**/*.excalidraw"]
6 changes: 6 additions & 0 deletions docs/CI.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,11 @@ formatting, linting, and compile validation must pass before the test fan-out be

The quality workflow performs static validation and build verification before tests run.

### [Typos][typos]

- `typos` checks source code and documentation for spelling mistakes.
- Version `1.49.0` is pinned so dictionary updates do not unexpectedly break the pipeline.

### [rustfmt][rustfmt]

- `cargo +nightly fmt --all` checks formatting consistency by reformatting the workspace.
Expand Down Expand Up @@ -67,3 +72,4 @@ The integration workflow exercises feature-backed behavior and the broader end-t
[clippy]: https://doc.rust-lang.org/clippy/
[docs-rs]: https://docs.rs/
[rustfmt]: https://github.com/rust-lang/rustfmt
[typos]: https://github.com/crate-ci/typos
2 changes: 1 addition & 1 deletion docs/architecture/CAS.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ stores only four unique chunks. This can save substantial space for a supervised
fine-tuned model whose tensors mostly remain unchanged or for a full database backup
in which only a few records changed.

<img src="../static/sparseio-cas-split-diagram.png" alt="CAS Example" width="1200"/>
<img src="../static/sparseio-cas-split-diagram.png" alt="CAS Example" width="1000"/>

## Insertion

Expand Down
Loading