Skip to content

Create .spellcheck.yml #5

Create .spellcheck.yml

Create .spellcheck.yml #5

Workflow file for this run

name: Spellcheck Action
on: push
jobs:
spellcheck:
runs-on: ubuntu-latest
container:
image: python:3.9-slim
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: |
apt-get update
apt-get install -y aspell aspell-en
- name: Install pyspelling
run: pip install pyspelling
- name: Run pyspelling
run: pyspelling
continue-on-error: true