Skip to content

fix spelling errors

fix spelling errors #2

Workflow file for this run

name: Codespell
on:
push:
pull_request:
branches:
- master
workflow_dispatch: {}
jobs:
spellcheck:
name: Spell Check
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Set up Python 🐍
uses: actions/setup-python@v5
- name: Install codespell
run: |
python -m pip install --upgrade pip
pip install codespell
- name: Check spelling
run: codespell --skip=.git,./renovate.json,./LICENSE,CHANGELOG.rst --check-filenames --ignore-regex=.te# --ignore-words=.codespellignore