Skip to content

Commit dfdecfc

Browse files
committed
Use codespell-project/actions-codespell
1 parent 15447b5 commit dfdecfc

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

.github/workflows/lint.yaml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,7 @@ jobs:
2222
runs-on: ubuntu-latest
2323
steps:
2424
- 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
32-
run: codespell --ignore-words-list="ba,te,deltion" --quiet-level=2 --skip="*.po"
25+
- uses: codespell-project/actions-codespell@master
26+
with:
27+
skip: '*.po'
28+
ignore_words_list: ba,te,deltion

0 commit comments

Comments
 (0)