rich/.github/workflows/codespell.yml
2022-04-08 07:18:01 +02:00

10 lines
312 B
YAML

name: codespell
on: [pull_request, push]
jobs:
codespell:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: python3 -m pip install codespell
- run: codespell --ignore-words-list="ba,fo,hel,revered,womens"
--skip="./README.*.md,*.svg,./benchmarks/snippets.py"