DSA/.github/workflows/codespell.yml

15 lines
414 B
YAML
Raw Normal View History

name: codespell
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
codespell:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- run: pip install codespell
- run: codespell --ignore-words-list="ans,nnumber,nin,Hel" --quiet-level=2 --skip="**/**/package-lock.json,./docs/pt,./.github,./algorithms/CSharp/test"