mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
bf8986783b
Misspell -> Correct commonly misspelled English words... quickly. A Golang library that runs without a dictionary. https://github.com/client9/misspell Can even autofix with '-w'
14 lines
370 B
YAML
14 lines
370 B
YAML
name: Lint
|
|
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
misspell:
|
|
name: Check Spelling Misspell
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- 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 -i 'aircrafts,devels,invertions' -error
|