CI: scope rustfmt to our crates, not the vendored SDK

`cargo fmt --all` descends into the tuta-repo submodule (its own
workspace), which we deliberately don't reformat. Check only our three
crates.
This commit is contained in:
Anthony
2026-05-29 15:03:01 +02:00
parent 690df76aab
commit 27ea620f76
+3 -1
View File
@@ -60,8 +60,10 @@ jobs:
working-directory: ui
run: npx tsc --noEmit
# Scope to our crates explicitly — `--all` would descend into the
# vendored SDK submodule (its own workspace), which we don't format.
- name: Rustfmt
run: cargo fmt --all --check
run: cargo fmt --check -p tutabridge -p tutabridge-core -p tutabridge-gui
# Advisory for now — the codebase still has a handful of clippy lints.
# Tighten to `-- -D warnings` once they're cleared.