summaryrefslogtreecommitdiffstats
path: root/.github/workflows/spellcheck.yml
blob: 14b827810dabcfe818e245584f4a8a86f7190820 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
---
name: Spellcheck

on:
  workflow_dispatch: {}
  # Run for pushes on any branch
  push:
    branches:
      - '*'
  # Run for any PRs
  pull_request:

jobs:
  codespell:
    name: codespell
    strategy:
      fail-fast: false
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v5
      - name: Codespell
        uses: codespell-project/actions-codespell@v2
        with:
          skip: "./.git,./.gitignore,./ABOUT-NLS,./gl,./tools/squid.conf,./build-aux/ltmain.sh,THANKS.in"
          ignore_words_list: allright,gord,didi,hda,nd,alis,clen,scrit,ser,fot,te,parm,isnt,consol,oneliners,esponse,slac
          check_filenames: true
          check_hidden: true