Browse Source

feat: add spellcheck action

feat/add-spellcheck-action
kyranjamie 4 years ago
parent
commit
a01e54c47f
No known key found for this signature in database GPG Key ID: 74AADC5C6561CCA9
  1. 11
      .github/workflows/spellcheck.yml
  2. 16
      .spellcheck.yml

11
.github/workflows/spellcheck.yml

@ -0,0 +1,11 @@
name: Spellcheck Action
on: push
jobs:
build:
name: Spellcheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: rojopolis/spellcheck-github-actions@0.5.0
name: Spellcheck

16
.spellcheck.yml

@ -0,0 +1,16 @@
matrix:
- name: Markdown
aspell:
lang: en
dictionary:
encoding: utf-8
pipeline:
- pyspelling.filters.markdown:
- pyspelling.filters.html:
comments: false
ignores:
- code
- pre
sources:
- 'src/pages/**/*.md'
default_encoding: utf-8
Loading…
Cancel
Save