diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2020-12-18 23:43:11 +0900 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-12-18 23:43:11 +0900 |
| commit | 08d4365252d421f71800992b34684e320ce41ca6 (patch) | |
| tree | f6f9cda5a692c02e5eae8b9c80de7e40fd933241 /.github | |
| parent | fbe5033f80cda70d4e835b7c99748df116d3be4c (diff) | |
| parent | d21d5993b9452bdb7813e8c6b897241bbc72b758 (diff) | |
| download | mruby-08d4365252d421f71800992b34684e320ce41ca6.tar.gz mruby-08d4365252d421f71800992b34684e320ce41ca6.zip | |
Merge pull request #5228 from jbampton/spell-checker
feat(CI): add a GitHub Action to check spelling
Diffstat (limited to '.github')
| -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 |
