Skip to content

Commit f08779b

Browse files
authored
Add misspell check via reviewdog (#6)
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.
1 parent 3de3bdc commit f08779b

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/reviewdog.yml

+10
Original file line numberDiff line numberDiff line change
@@ -41,3 +41,13 @@ jobs:
4141
path: "."
4242
pattern: "*.sh"
4343
exclude: "./.git/*"
44+
45+
misspell:
46+
name: runner / misspell
47+
runs-on: ubuntu-latest
48+
steps:
49+
- uses: actions/checkout@v2
50+
- uses: reviewdog/action-misspell@v1
51+
with:
52+
github_token: ${{ secrets.github_token }}
53+
reporter: github-check

0 commit comments

Comments
 (0)