From 3a0a6d46a828a12fc903e03efc31de6962172835 Mon Sep 17 00:00:00 2001 From: Pierre-antoine Comby Date: Wed, 16 Oct 2024 09:14:46 +0200 Subject: [PATCH] feat(ci): add codespell --- .github/workflows/test.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a98b599..9bfc81a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -27,6 +27,11 @@ jobs: run: | black --check src tests ruff . + - name: Annotate locations with typos + uses: codespell-project/codespell-problem-matcher@v1 + - name: Codespell + uses: codespell-project/actions-codespell@v2 + # Run tests - name: Test run: | pytest