hugo/docs/.github/workflows/spellcheck.yml
2022-03-08 19:39:33 +01:00

18 lines
422 B
YAML

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