From c2ef1032df56295955264f8dd61fef4df4c48676 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Wed, 13 Jan 2021 22:01:54 +0100 Subject: [PATCH] GitHub Actions: Find typos with codespell --- .github/workflows/lint.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index db0e1ebd2..0be8a9a37 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -14,7 +14,8 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install black + pip install black codespell - name: Check with black - run: | - black --check . + run: black --check . + - name: Find typos with codespell + run: codespell --ignore-words-list="ba,te" --quiet-level=2 --skip="*.po" || true