123456789101112131415161718192021222324252627282930 |
- name: Codespell test
- on:
- push:
- branches: [ 'master', 'main', 'release/**' ]
- pull_request:
- branches: [ '*' ]
- concurrency:
- group: ${{ github.workflow }}-${{ github.ref }}
- cancel-in-progress: true
- # END OF COMMON SECTION
- jobs:
- codespell:
- if: github.repository_owner == 'wolfssl'
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v4
- - uses: codespell-project/actions-codespell@v2.1
- with:
- check_filenames: true
- check_hidden: true
- # Add comma separated list of words that occur multiple times that should be ignored (sorted alphabetically, case sensitive)
- ignore_words_list: adin,aNULL,carryIn,chainG,ciph,cLen,cliKs,dout,haveA,inCreated,inOut,inout,larg,LEAPYEAR,Merget,optionA,parm,parms,repid,rIn,userA,ser,siz,te,Te
- # The exclude_file contains lines of code that should be ignored. This is useful for individual lines which have non-words that can safely be ignored.
- exclude_file: '.codespellexcludelines'
- # To skip files entirely from being processed, add it to the following list:
- skip: '*.cproject,*.der,*.mtpj,*.pem,*.vcxproj,.git,*.launch,*.scfg'
|