Merge pull request #8183 from SparkiDev/kyber_fixes_3 #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' |