Skip to content

Commit 3dbb8fd

Browse files
committed
[ci] add typos workflow
1 parent d98093c commit 3dbb8fd

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

.github/workflows/typos.yaml.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# https://help.github.com/en/categories/automating-your-workflow-with-github-actions
2+
name: "Spelling"
3+
4+
on:
5+
pull_request:
6+
push:
7+
8+
jobs:
9+
typos:
10+
name: "Check for typos"
11+
runs-on: "ubuntu-latest"
12+
13+
steps:
14+
- uses: actions/checkout@v4
15+
16+
- name: "Check for typos"
17+
uses: "crate-ci/typos@v1"
18+
with:
19+
files: "README.md src rules tests"

0 commit comments

Comments
 (0)