blob: 307617c4a8adb88ba15069b9b0cc56af4336d692 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
|