Use codespell to check spelling in documentation, refs #1417

pull/1418/head
Simon Willison 2021-08-03 09:20:02 -07:00
rodzic 54b6e96ee8
commit ef7d7b5ace
2 zmienionych plików z 26 dodań i 0 usunięć

Wyświetl plik

@ -0,0 +1,25 @@
name: Check spelling in documentation
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: 3.9
- uses: actions/cache@v2
name: Configure pip caching
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/setup.py') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: |
pip install codespell
- name: Check spelling
run: codespell docs/*.rst --ignore-words docs/codespell-ignore-words.txt

Wyświetl plik

@ -0,0 +1 @@
AddWordsToIgnoreHere