bump gha-setup-ninja to 8b297075da4cd2a5f1fd21fe011b499edf06e9d2 late… #2677
Workflow file for this run
This file contains 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: Docs PR Spellcheck | |
on: | |
pull_request: | |
branches: | |
- 'dev' | |
files: | |
- '**Doxyfile' | |
- '**docpages/**' | |
- '**/*.h' | |
- '**/documentation-check.yml' | |
push: | |
files: | |
- '**/documentation-check.yml' | |
permissions: | |
contents: read # This only needs to read the contents of a PR. | |
jobs: | |
docs: | |
name: Check Documentation Spelling | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09 # v2.5.1 | |
with: | |
egress-policy: audit | |
- name: Checkout D++ | |
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 | |
- name: Check docs spelling | |
run: npx -y cspell lint --language-id=cpp --no-progress --no-summary --show-context --show-suggestions --relative --color docpages/*.md include/dpp/*.h |