Merge pull request #739 from btchip/7702-phase1 #1135
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
| name: Misspellings CI | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - master | |
| - main | |
| - develop | |
| pull_request: | |
| jobs: | |
| misspell: | |
| name: Check misspellings | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - name: Check misspellings | |
| uses: codespell-project/actions-codespell@v2 | |
| with: | |
| builtin: clear,rare | |
| check_filenames: true | |
| path: src, src_bagl, src_features, src_nbgl, src_plugins, doc, client |