mirror of https://github.com/Textualize/rich.git
11 lines
384 B
YAML
11 lines
384 B
YAML
name: codespell
|
|
on: [pull_request, push]
|
|
jobs:
|
|
codespell:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- run: python3 -m pip install codespell
|
|
- run: codespell --ignore-words-list="ba,fo,hel,revered,womens"
|
|
--skip="./README.de.md,./README.es.md,./README.sv.md,./README.fr.md,./README.de-ch.md,./README.hi.md,./README.pt-br.md,*.svg"
|