Fix command for Linux ARM runner #416
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
| # | |
| # Checks for any common spelling errors | |
| # | |
| name: Spelling Check | |
| on: [push, pull_request] | |
| jobs: | |
| dotnet-format: | |
| name: Spelling Check | |
| runs-on: ubuntu-latest | |
| if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Install codespell | |
| run: pip install codespell | |
| - name: Add codespell problem matcher | |
| uses: codespell-project/codespell-problem-matcher@v1 | |
| - name: Run codespell | |
| run: codespell build/ docker/ src/ --ignore-words-list=recal |