Skip to content

Spellcheck

Spellcheck #3

Workflow file for this run

name: Spellcheck
on: workflow_dispatch
# pull_request:
# types: [opened, reopened]
# push:
jobs:
spellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.11
uses: actions/setup-python@v1
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools
python -m pip install pyspelling
python -m pip install pymdown-extensions
# Install any additional libraries required: additional plugins, documentation building libraries, etc.
- name: Install Aspell
run: |
sudo apt-get install aspell aspell-en
- name: Spell check
run: |
python -m pyspelling