Skip to content

Commit bcb9345

Browse files
committed
docs: add typo check workflow for pull requests
1 parent 6304d41 commit bcb9345

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/typos.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Typo Check
2+
3+
on:
4+
pull_request:
5+
types: [opened, synchronize, reopened]
6+
7+
jobs:
8+
typos:
9+
name: Check for typos
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout code
13+
uses: actions/checkout@v4
14+
15+
- name: Check for typos
16+
uses: crate-ci/typos@master

0 commit comments

Comments
 (0)