Skip to content

Commit

Permalink
[GitHub] Add spell checker for readmes
Browse files Browse the repository at this point in the history
  • Loading branch information
drashna committed Aug 2, 2024
1 parent 99cc654 commit 17313aa
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/spelling.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: 'Check spelling'
on: # rebuild any PRs and main branch changes
pull_request:
push:

jobs:
spellcheck: # run the action
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: streetsidesoftware/cspell-action@v4
with:
files: '**/*.md'
root: '.'
inline: warning
verbose: false

0 comments on commit 17313aa

Please sign in to comment.