-
-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (36 loc) · 979 Bytes
/
cspell.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
---
name: cspell
# yamllint disable-line rule:truthy
on:
push:
branches:
- master
paths:
- '**/*.md'
pull_request:
branches:
- master
paths:
- '**/*.md'
jobs:
check:
name: Spellcheck project
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: cspell run
uses: streetsidesoftware/cspell-action@v6
with:
files: "**/*.md"
check_dot_files: true
suggestions: false
# Limit the files checked to the ones in the pull request or push.
incremental_files_only: true
# Path to `cspell.json`
config: '.github/cspell/cspell.json'
# Log progress and other information during the action execution.
# Default: false
verbose: false
# Use the `files` setting found in the CSpell configuration instead of `input.files`.
use_cspell_files: false