[TEST BUILD] Merge release/10.0 to main #2079
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
| name: 'Spellcheck' | |
| on: | |
| pull_request: | |
| paths: ['src/**', '**/*.md'] | |
| permissions: | |
| pull-requests: read | |
| jobs: | |
| spellcheck: | |
| name: Spellcheck | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd | |
| with: | |
| persist-credentials: false | |
| - uses: streetsidesoftware/cspell-action@3294df585d3d639e30f3bc019cb11940b9866e95 | |
| name: Documentation spellcheck | |
| if: ${{ !cancelled() }} | |
| with: | |
| files: '**/*.md' | |
| inline: error | |
| incremental_files_only: true | |
| - uses: streetsidesoftware/cspell-action@3294df585d3d639e30f3bc019cb11940b9866e95 | |
| name: Resx spellcheck | |
| if: ${{ !cancelled() }} | |
| with: | |
| files: 'src/**/*.resx' | |
| inline: error | |
| incremental_files_only: true | |
| - uses: streetsidesoftware/cspell-action@3294df585d3d639e30f3bc019cb11940b9866e95 | |
| name: Source code spellcheck | |
| if: ${{ !cancelled() }} | |
| with: | |
| files: 'src/**/*{.cs,.cpp,.h,.targets,.props,.*proj}' | |
| inline: warning | |
| incremental_files_only: true | |
| # Do not cause the gate to fail if potential typos in source code are found. | |
| # The signal-to-noise ratio here needs to be better understood first. | |
| strict: false |