Skip to content

[Nullable Context] Enable on Microsoft.Diagnostics.Monitoring.ConfigurationSchema #1640

[Nullable Context] Enable on Microsoft.Diagnostics.Monitoring.ConfigurationSchema

[Nullable Context] Enable on Microsoft.Diagnostics.Monitoring.ConfigurationSchema #1640

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