From 12d572025f6a2f64ce67b14f02def7c17cc7ec01 Mon Sep 17 00:00:00 2001 From: Manuel Raimann Date: Fri, 30 Jan 2026 18:03:35 +0100 Subject: [PATCH] feat: add typos check job to CI with Rust installation and caching --- .github/workflows/ci.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4764645..d714ed9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -201,9 +201,18 @@ jobs: - name: Run tests run: cargo test --all-features + typos: name: Typos runs-on: ubuntu-latest steps: - uses: actions/checkout@v6 - - uses: crate-ci/typos@v1 + - name: Install Rust + run: | + rustup override set stable + rustup update stable + - uses: taiki-e/cache-cargo-install-action@v3 + with: + tool: typos-cli + - name: Typos Check + run: typos src/