Merge pull request #432 from thomasferrandiz/cilium-noexclusive #351
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: Codespell | |
| on: | |
| push: | |
| pull_request: | |
| branches: | |
| - main | |
| workflow_dispatch: {} | |
| jobs: | |
| spellcheck: | |
| name: Spell Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 1 | |
| - name: Set up Python 🐍 | |
| uses: actions/setup-python@v5 | |
| - name: Install codespell | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install codespell | |
| - name: Check spelling | |
| run: codespell ./docs |