mirror of
https://gitlab.com/niansa/discord_llama.git
synced 2025-03-06 20:48:25 +01:00
25 lines
587 B
YAML
25 lines
587 B
YAML
name: Docs PR Spellcheck
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- 'dev'
|
|
files:
|
|
- '**Doxyfile'
|
|
- '**docpages/**'
|
|
- '**/*.h'
|
|
- '**/documentation-check.yml'
|
|
push:
|
|
files:
|
|
- '**/documentation-check.yml'
|
|
|
|
jobs:
|
|
docs:
|
|
name: Check Documentation Spelling
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
|
- name: Checkout D++
|
|
uses: actions/checkout@v2
|
|
|
|
- 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
|