summaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2020-12-18 23:43:11 +0900
committerGitHub <[email protected]>2020-12-18 23:43:11 +0900
commit08d4365252d421f71800992b34684e320ce41ca6 (patch)
treef6f9cda5a692c02e5eae8b9c80de7e40fd933241 /.github
parentfbe5033f80cda70d4e835b7c99748df116d3be4c (diff)
parentd21d5993b9452bdb7813e8c6b897241bbc72b758 (diff)
downloadmruby-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.yml17
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