hdf5/.github/workflows/codespell.yml
Yaroslav Halchenko 487d5f0813
RF: move codespell configuration into .codespellrc so could be used locally as well (#3958)
ATM configuration was embedded within the CI workflow but that makes impossible
to use  codespell  locally since the tool would not find those settings. I moved them
into .codespellrc  but then also removed codespell.yml workflow from skips, added .git and
in general makde it look for .dotfiles too
2024-01-26 07:59:25 -08:00

15 lines
449 B
YAML

# GitHub Action to automate the identification of common misspellings in text files
# https://github.com/codespell-project/codespell
# https://github.com/codespell-project/actions-codespell
name: codespell
on: [push, pull_request]
permissions:
contents: read
jobs:
codespell:
name: Check for spelling errors
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.1
- uses: codespell-project/actions-codespell@master