Skip to content

Adding Docs for Ephemeral container use #2069

Adding Docs for Ephemeral container use

Adding Docs for Ephemeral container use #2069

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