Skip to content

[feature/9.x] Update dependencies from dotnet/sdk #1774

[feature/9.x] Update dependencies from dotnet/sdk

[feature/9.x] Update dependencies from dotnet/sdk #1774

Workflow file for this run

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@b4ffde65f46336ab88eb53be808477a3936bae11
with:
persist-credentials: false
- uses: streetsidesoftware/cspell-action@934c74da3775ac844ec89503f666f67efb427fed
name: Documentation spellcheck
if: ${{ !cancelled() }}
with:
files: '**/*.md'
inline: error
incremental_files_only: true
- uses: streetsidesoftware/cspell-action@934c74da3775ac844ec89503f666f67efb427fed
name: Resx spellcheck
if: ${{ !cancelled() }}
with:
files: 'src/**/*.resx'
inline: error
incremental_files_only: true
- uses: streetsidesoftware/cspell-action@934c74da3775ac844ec89503f666f67efb427fed
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