Skip to content

Commit 6a6683d

Browse files
authored
Merge pull request #115 from suborbital/arbourd-patch-1
Create spellcheck.yml
2 parents 4f29860 + f4f8bd0 commit 6a6683d

3 files changed

Lines changed: 546 additions & 1 deletion

File tree

.github/workflows/spellcheck.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: spellcheck
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- main
7+
push:
8+
branches:
9+
- main
10+
11+
jobs:
12+
spellcheck:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v3
16+
- uses: igsekor/pyspelling-any@v1.0.4
17+
18+
matrix:
19+
- name: Markdown
20+
sources:
21+
- 'website/docs/**/*.md'
22+
default_encoding: utf-8
23+
aspell:
24+
lang: en
25+
dictionary:
26+
wordlists:
27+
- spelling.dic
28+
pipeline:
29+
- pyspelling.filters.markdown:
30+
- pyspelling.filters.html:
31+
comments: false
32+
ignores:
33+
- code
34+
- pre

0 commit comments

Comments
 (0)