Adjust build for Maven bundles to stricter rules #210
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
| # Check text for common misspellings and report them (GitHub Action) | |
| # https://pypi.org/project/codespell | |
| name: codespell | |
| on: [pull_request, push] | |
| permissions: | |
| contents: read | |
| jobs: | |
| codespell-text: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - run: pip install codespell | |
| - run: codespell --count --ignore-words=Misc/codespell/words.ignore | |
| NEWS README.md README.txt LICENSE.txt Misc/INDEX Misc/codespell/README | |
| Doc InternalDocs ProcessDocs |