Add GitHub Workflow for checking the spelling of Markdown content.

This commit is contained in:
David Anson 2022-08-14 19:08:09 -07:00
parent 392a184bc8
commit 97f349a81d
2 changed files with 125 additions and 0 deletions

18
.github/workflows/spell-check.yml vendored Normal file
View file

@ -0,0 +1,18 @@
name: SpellCheck
on:
pull_request:
push:
schedule:
- cron: '30 12 * * *'
workflow_dispatch:
jobs:
spellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: tbroadley/spellchecker-cli-action@v1.1.1
with:
dictionaries: '.github/dictionary.txt'
files: '*.md doc/*.md helpers/*.md'