Skip to content

Commit 37a57ac

Browse files
CI: add a codespell job
1 parent 124d17d commit 37a57ac

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/codespell.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
on:
2+
push:
3+
branches: [master]
4+
pull_request:
5+
6+
name: Codespell
7+
8+
jobs:
9+
codespell:
10+
runs-on: ubuntu-20.04
11+
steps:
12+
- uses: actions/checkout@v2
13+
- uses: codespell-project/actions-codespell@master
14+
with:
15+
check_filenames: true
16+
skip: "./.git/**,./flat-manager/dist/index.js,./flatpak-builder/dist/index.js,**/yarn.lock"
17+
builtin: "clear,rare,informal,usage,code"
18+
ignore_words_list: "master" # can't do much about it, flatpak uses it by default

0 commit comments

Comments
 (0)