👷 Add cargo spellcheck tool
All checks were successful
ci/woodpecker/pr/validate Pipeline was successful

This commit is contained in:
2025-04-27 21:12:32 +02:00
parent cd0a763c0a
commit 8684086c74
5 changed files with 32 additions and 6 deletions

View File

@@ -14,6 +14,13 @@ steps:
# Not ready to block PR on fail
failure: ignore
- name: lint - spellcheck
image: rust:1.86
commands: |
apt update && apt install -y libclang-dev hunspell
cargo install --locked cargo-spellcheck
cargo spellcheck
- name: lint - dependencies
image: rust:1.86
commands: |