diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index cad5ee8065..c23bfd7bb3 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -16,4 +16,16 @@ jobs: reporter: github-pr-review level: warning glob_pattern: "**/*.py" - filter_mode: "file" \ No newline at end of file + filter_mode: "file" + + misspell: + name: runner / misspell + runs-on: ubuntu-latest + steps: + - name: Highlight any misspellings in changes. + uses: actions/checkout@v4 + - name: misspell + uses: reviewdog/action-misspell@v1 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + locale: "US" \ No newline at end of file