From eaeb4e9418bff890193ed6ec12adbcae1fc9bb3f Mon Sep 17 00:00:00 2001 From: Isaac Milarsky Date: Wed, 17 Jan 2024 15:40:54 -0600 Subject: [PATCH] also add misspell check Signed-off-by: Isaac Milarsky --- .github/workflows/checks.yml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) 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