Skip to content

Update ignore-words #54

Update ignore-words

Update ignore-words #54

Workflow file for this run

name: Spell Checking
on: [push, pull_request]
jobs:
codespell:
name: Check spelling with codespell
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v4
with:
python-version: 3.12
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install codespell
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Check spelling with codespell
run: codespell --ignore-words=.github/workflows/ignore-words.txt || exit 1