Skip to content

Multiple files: correct spelling #10

Multiple files: correct spelling

Multiple files: correct spelling #10

Workflow file for this run

name: "Pre-commit checks"
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
codespell:
name: "Check for spelling errors"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: codespell-project/actions-codespell@master
with:
check_filenames: true
skip: "./include, ./configs"
ignore_words_file: ./support/.codespellignore
# When using this Action in other repos, the --skip option below can be removed