Skip to content

Spellcheck

Spellcheck #3

Workflow file for this run

name: Spellcheck
on:
workflow_dispatch:
# push:
# branches:
# - main
# pull_request:
# branches:
# - main
jobs:
spellcheck:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Run Spellcheck
uses: check-spelling/check-spelling@main
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
paths: "content/**/*.md"