forked from TheAlgorithms/Python
- Notifications
You must be signed in to change notification settings - Fork 0
Latest commit
14 lines (14 loc) · 540 Bytes
/
Copy pathcodespell.yml
File metadata and controls
14 lines (14 loc) · 540 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# GitHub Action to automate the identification of common misspellings in text files
# https://github.com/codespell-project/codespell
name: codespell
on: [push, pull_request]
jobs:
codespell:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
- run: pip install codespell flake8
- run: |
SKIP="./.*,./other/dictionary.txt,./other/words,./project_euler/problem_22/p022_names.txt"
codespell -L ans,fo,hist,iff,secant,tim --skip=$SKIP --quiet-level=2