Skip to content

Commit

Permalink
Add misspell check (#94)
Browse files Browse the repository at this point in the history
* Add misspell check via ReviewDog

see: https://github.com/reviewdog/action-misspell

misspell: https://github.com/client9/misspell

* Use default misspell locale, not US

> Default is to use a neutral variety of English.  Setting locale to US
> will correct the British spelling of 'colour' to 'color' [1]

[1] https://github.com/client9/misspell
  • Loading branch information
johnboyes authored Apr 23, 2020
1 parent 7f3a932 commit 117bbad
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/reviewdog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,13 @@ jobs:
path: "."
pattern: "*.sh"
exclude: "./.git/*"

misspell:
name: runner / misspell
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: reviewdog/action-misspell@v1
with:
github_token: ${{ secrets.github_token }}
reporter: github-check

0 comments on commit 117bbad

Please sign in to comment.