Skip to content

Add CI workflows for markdown linting and spell checking #4

Add CI workflows for markdown linting and spell checking

Add CI workflows for markdown linting and spell checking #4

Workflow file for this run

name: Spell Check
on:
push:
branches:
- main
pull_request:
jobs:
spell-check:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install aspell
run: sudo apt-get install -y aspell aspell-en
- name: Install pyspelling
run: pip install pyspelling
- name: Run Spell Checker
run: pyspelling -c spellcheck.yaml