Skip to content

Commit fbcf8a1

Browse files
cclausssebastinas
authored andcommitted
GitHub Actions: Find typos with codespell
1 parent 864b772 commit fbcf8a1

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/lint.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ jobs:
1414
- name: Install dependencies
1515
run: |
1616
python -m pip install --upgrade pip
17-
pip install black
17+
pip install black codespell
1818
- name: Check with black
19-
run: |
20-
black --check .
19+
run: black --check .
20+
- name: Find typos with codespell
21+
run: codespell --ignore-words-list="ba,te" --quiet-level=2 --skip="*.po" || true

0 commit comments

Comments
 (0)