Skip to content

Commit a686970

Browse files
committed
add spellchecker: typos
1 parent 4620e15 commit a686970

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/checksrc.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ permissions: {}
2020

2121
jobs:
2222
linters:
23-
name: 'linters'
23+
name: 'spellcheck, linters'
2424
runs-on: ubuntu-latest
2525
steps:
2626
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
@@ -29,11 +29,17 @@ jobs:
2929

3030
- name: 'install prereqs'
3131
run: |
32-
/home/linuxbrew/.linuxbrew/bin/brew install zizmor
32+
/home/linuxbrew/.linuxbrew/bin/brew install zizmor typos-cli
3333
3434
- name: 'zizmor GHA'
3535
env:
3636
GH_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
3737
run: |
3838
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
3939
zizmor --pedantic .github/workflows/*.yml
40+
41+
- name: 'typos'
42+
run: |
43+
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
44+
typos --version
45+
typos

0 commit comments

Comments
 (0)