Skip to content

Commit

Permalink
Add misspell check via reviewdog (#6)
Browse files Browse the repository at this point in the history
NB if we add golangci-lint linting for go then we will probably
include misspell checking there too.  We also want misspell to check
markdown files too though, so we'll still need this separate check as
well.

There will be no harm in having any go file spelling errors being
reported twice.
  • Loading branch information
johnboyes authored Jul 29, 2020
1 parent 3de3bdc commit f08779b
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 @@ -41,3 +41,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 f08779b

Please sign in to comment.