Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
GitHub Actions: Find typos with codespell
  • Loading branch information
cclauss authored Jan 13, 2021
commit c2ef1032df56295955264f8dd61fef4df4c48676
7 changes: 4 additions & 3 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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