hugo/docs/.github/workflows/spellcheck.yml
2022-06-28 20:51:33 +02:00

21 lines
415 B
YAML

name: 'Check spelling'
on: # rebuild any PRs and main branch changes
push:
branches-ignore:
- "dependabot/**"
pull_request:
permissions:
contents: read
jobs:
spellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: streetsidesoftware/cspell-action@v2
with:
inline: warning
strict: false
incremental_files_only: true