Skip to content

Add Azure Linux 4 E2E test coverage (#385) #1037

Add Azure Linux 4 E2E test coverage (#385)

Add Azure Linux 4 E2E test coverage (#385) #1037

Workflow file for this run

name: Check Spelling
on:
push:
branches: ["main", "dev"]
pull_request:
branches: ["main", "dev"]
jobs:
spelling:
name: Check Spelling
permissions:
contents: read
runs-on: ubuntu-latest
if: ${{ contains(github.event_name, 'pull_request') || github.event_name == 'push' }}
concurrency:
group: spelling-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Check Spelling
uses: streetsidesoftware/cspell-action@v8
with:
config: cspell.json
# On pull requests, only check files changed in the PR.
incremental_files_only: ${{ github.event_name == 'pull_request' }}
# Fail the check when spelling issues are found.
strict: true
inline: warning