diff options
Diffstat (limited to '.github/workflows/codespell.yml')
-rw-r--r-- | .github/workflows/codespell.yml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml new file mode 100644 index 0000000..c41d337 --- /dev/null +++ b/.github/workflows/codespell.yml @@ -0,0 +1,16 @@ +--- +name: Codespell +on: [push, pull_request] +permissions: + contents: read + +jobs: + codespell: + name: Check for spelling errors + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: codespell-project/actions-codespell@master + with: + skip: ca_hashes.txt,tls_data.txt,*.pem,OPENSSL-LICENSE.txt,CREDITS.md,openssl.cnf + ignore_words_list: borken,gost,ciph,ba,bloc,isnt,chello,fo,alle,anull |