Script: Add build_depend.sh #559
This file contains hidden or 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
| # Author:Kang Lin <kl222@126.com> | |
| name: Codespell | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| codespell: | |
| name: Check for spelling errors | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v3 | |
| with: | |
| submodules: true | |
| - uses: codespell-project/actions-codespell@master | |
| with: | |
| check_filenames: true | |
| path: ${{github.workspace}} | |
| skip: "*.lua,*.ui,codespell.yml" | |
| ignore_words_list: "doubleclick,msdos,rabits,eArch" |