mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-01-12 15:04:59 +08:00
487d5f0813
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
15 lines
449 B
YAML
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
|