mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
01a6cdb882
To avoid including `.git` directory.
18 lines
412 B
YAML
18 lines
412 B
YAML
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: |
|
|
git ls-files --empty-directory | xargs ./misspell -error
|