Add GitHub Action to check spelling (#3591)
Signed-off-by: Aaron Raimist <aaron@raim.ist>
This commit is contained in:
parent
d2fd90579b
commit
01cd41de68
37 changed files with 74 additions and 47 deletions
15
.github/workflows/spell-check.yaml
vendored
Normal file
15
.github/workflows/spell-check.yaml
vendored
Normal file
|
@ -0,0 +1,15 @@
|
|||
name: Spell Check
|
||||
on: [pull_request]
|
||||
|
||||
jobs:
|
||||
run:
|
||||
name: Spell Check with Typos
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout Actions Repository
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Check spelling of proposals
|
||||
uses: crate-ci/typos@master
|
||||
with:
|
||||
config: ${{github.workspace}}/.github/_typos.toml
|
Loading…
Add table
Add a link
Reference in a new issue