1# GitHub Action to automate the identification of common misspellings in text files. 2# https://github.com/codespell-project/actions-codespell 3# https://github.com/codespell-project/codespell 4name: codespell 5on: [push, pull_request] 6jobs: 7 codespell: 8 name: Check for spelling errors 9 runs-on: ubuntu-latest 10 steps: 11 - uses: actions/checkout@v2 12 - uses: codespell-project/actions-codespell@master 13 with: 14 check_filenames: true 15 skip: ./.git,./conformance/third_party,*.snk,*.pb,*.pb.cc,*.pb.h,./src/google/protobuf/testdata,./objectivec/Tests,./python/compatibility_tests/v2.5.0/tests/google/protobuf/internal,./.github/workflows/codespell.yml 16 ignore_words_list: "alow,alse,ba,cleare,copyable,cloneable,dedup,dur,errorprone,files',fo,fundementals,hel,importd,inout,leapyear,nd,nin,ois,ons,parseable,process',te,testof,ue,unparseable,wasn,wee,gae,keyserver,objext,od,optin,streem,sur" 17