We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1653112 commit 1e45049Copy full SHA for 1e45049
1 file changed
.github/workflows/lint.yaml
@@ -17,5 +17,16 @@ jobs:
17
pip install black codespell
18
- name: Check with black
19
run: black --check .
20
+
21
+ codespell:
22
+ runs-on: ubuntu-latest
23
+ steps:
24
+ - uses: actions/checkout@v2
25
+ - name: Set up Python
26
+ uses: actions/setup-python@v2
27
+ - name: Install dependencies
28
+ run: |
29
+ python -m pip install --upgrade pip
30
+ pip install codespell
31
- name: Find typos with codespell
- run: codespell --ignore-words-list="ba,te" --quiet-level=2 --skip="*.po" || true
32
+ run: codespell --ignore-words-list="ba,te" --quiet-level=2 --skip="*.po"
0 commit comments