summaryrefslogtreecommitdiffstats
path: root/.github/workflows/spellcheck.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/spellcheck.yml')
-rw-r--r--.github/workflows/spellcheck.yml27
1 files changed, 27 insertions, 0 deletions
diff --git a/.github/workflows/spellcheck.yml b/.github/workflows/spellcheck.yml
new file mode 100644
index 0000000..72f7c7e
--- /dev/null
+++ b/.github/workflows/spellcheck.yml
@@ -0,0 +1,27 @@
1---
2name: Spellcheck
3
4on:
5 # Run for pushes on any branch
6 push:
7 branches:
8 - '*'
9 # Run for any PRs
10 pull_request:
11
12jobs:
13 codespell:
14 name: codespell
15 strategy:
16 fail-fast: false
17 runs-on: ubuntu-latest
18 steps:
19 - name: Checkout
20 uses: actions/checkout@v4
21 - name: Codespell
22 uses: codespell-project/actions-codespell@v2
23 with:
24 skip: "./.git,./.gitignore,./ABOUT-NLS,./gl,./tools/squid.conf,./build-aux/ltmain.sh,THANKS.in"
25 ignore_words_list: allright,gord,didi,hda,nd,alis,clen,scrit,ser,fot,te,parm,isnt,consol,oneliners,esponse,slac
26 check_filenames: true
27 check_hidden: true