Skip to content

Commit

Permalink
add spell check to CI to find spelling errors
Browse files Browse the repository at this point in the history
Problem: we should automate spell checking
Solution: add spell check to CI
Signed-off-by: vsoch <vsoch@users.noreply.github.com>
  • Loading branch information
vsoch committed Apr 7, 2023
1 parent 60a96ca commit 6d7c8ce
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,15 @@ jobs:
- run: git fetch origin master
- uses: flux-framework/pr-validator@master

spelling:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Check Spelling
uses: crate-ci/typos@7ad296c72fa8265059cc03d1eda562fbdfcd6df2 # v1.9.0
with:
files: ./NEWS.md ./README.md

python-format:
name: python format
runs-on: ubuntu-20.04
Expand Down

0 comments on commit 6d7c8ce

Please sign in to comment.