Bump Microsoft.Extensions.Hosting from 10.0.0 to 10.0.1 #425
Workflow file for this run
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 |