Skip to content

Update spellcheck.yml #2

Update spellcheck.yml

Update spellcheck.yml #2

Workflow file for this run

name: Spellcheck Action
on: push
jobs:
spellcheck:
runs-on: ubuntu-latest
container:
image: python:3.9-slim # Use an appropriate Python image
steps:
- uses: actions/checkout@v2
- name: Install pyspelling
run: pip install pyspelling
- name: Run pyspelling
run: pyspelling
continue-on-error: true