Skip to content

Commit f2452b8

Browse files
committed
Add spellcheck workflow
1 parent 60c42d9 commit f2452b8

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/spelling.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Spelling
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request: null
8+
workflow_dispatch: null
9+
10+
concurrency:
11+
group: ${{ github.workflow }}-${{ github.ref }}
12+
cancel-in-progress: true
13+
14+
jobs:
15+
typos_check:
16+
name: Typos
17+
runs-on: ubuntu-latest
18+
steps:
19+
- name: Checkout repository
20+
uses: actions/checkout@v4
21+
22+
- name: Check spelling
23+
uses: crate-ci/typos@master

0 commit comments

Comments
 (0)