diff options
| author | John Bampton <[email protected]> | 2020-12-17 16:22:31 +1000 |
|---|---|---|
| committer | John Bampton <[email protected]> | 2020-12-17 16:22:31 +1000 |
| commit | d21d5993b9452bdb7813e8c6b897241bbc72b758 (patch) | |
| tree | f6f9cda5a692c02e5eae8b9c80de7e40fd933241 /.github/workflows | |
| parent | fbe5033f80cda70d4e835b7c99748df116d3be4c (diff) | |
| download | mruby-d21d5993b9452bdb7813e8c6b897241bbc72b758.tar.gz mruby-d21d5993b9452bdb7813e8c6b897241bbc72b758.zip | |
feat(CI): add a GitHub Action to check spelling
- Fix spelling
- Run only on pull request
- Using https://github.com/client9/misspell
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/spell-checker.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/spell-checker.yml b/.github/workflows/spell-checker.yml new file mode 100644 index 000000000..307617c4a --- /dev/null +++ b/.github/workflows/spell-checker.yml @@ -0,0 +1,17 @@ +name: ๐ Spellchecker + +on: [pull_request] + +jobs: + misspell: + name: ๐งน Check Spelling + runs-on: ubuntu-latest + steps: + - name: ๐ Check Out + uses: actions/checkout@v2 + - name: ๐
Install + run: | + wget -O - -q https://git.io/misspell | sh -s -- -b . + - name: ๐ถ๏ธ Misspell + run: | + find . -type f | xargs ./misspell -error |
