From 39415793fff443dce37b70d3080c6de305053395 Mon Sep 17 00:00:00 2001 From: John Nunley Date: Mon, 11 Mar 2024 19:31:01 -0700 Subject: [PATCH] ci: Change from cspell to typos-cli Signed-off-by: John Nunley --- .github/workflows/ci.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5a6e41c..ac48bc5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,10 +21,13 @@ jobs: with: rust-version: stable components: rustfmt + - uses: taiki-e/install-action@v2 + with: + tool: typos-cli - name: Check Formatting run: cargo fmt --all -- --check - - name: Check Spelling - run: npx -y cspell --no-progress --no-summary '**/*.rs' '**/*.md' + - name: Run Typos + run: typos tests: name: Tests