Skip to content

Commit 54a8001

Browse files
committed
Add GH action workflow for spell check.
1 parent 502d9dd commit 54a8001

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/spell-checker.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: 'Spell Checker'
2+
on:
3+
push:
4+
branches:
5+
- develop
6+
pull_request:
7+
branches:
8+
- develop
9+
10+
jobs:
11+
Spell-check:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Checkout Actions Repository
15+
uses: actions/checkout@v4
16+
17+
- name: Spell Check
18+
uses: crate-ci/typos@master
19+
with:
20+
files: ./

0 commit comments

Comments
 (0)