diff --git a/.github/workflows/spellcheck.yml b/.github/workflows/spellcheck.yml new file mode 100644 index 00000000..b07b006c --- /dev/null +++ b/.github/workflows/spellcheck.yml @@ -0,0 +1,18 @@ +name: 'Spellcheck' + +on: + pull_request: + push: + +jobs: + spellcheck: + name: Check spelling + runs-on: ubuntu-latest + steps: + - name: spelling or typos + uses: actions/checkout@v2 + - name: misspell + uses: reviewdog/action-misspell@v1 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + locale: "US"