apisix/.github/workflows/spellchecker.yml

20 lines
479 B
YAML
Raw Normal View History

2020-12-10 23:05:36 +08:00
name: spellchecker
on:
push:
branches: [master]
2020-12-10 23:05:36 +08:00
pull_request:
branches: [master]
2020-12-10 23:05:36 +08:00
jobs:
misspell:
name: runner / misspell
runs-on: ubuntu-latest
steps:
- name: Check out code.
uses: actions/checkout@v1
- name: Install
run: |
wget -O - -q https://git.io/misspell | sh -s -- -b .
- name: Misspell
run: |
2021-01-12 09:03:14 +08:00
find *.md apisix doc bin t -not -path "t/toolkit/*.lua" -type f | xargs ./misspell -error