Skip to content

Spell Check

Spell Check #398

Workflow file for this run

name: Spell Check
on:
pull_request:
push:
schedule: # Schedule trigger for catching new misspelling detections resulting from dictionary updates.
# Run every Saturday at 3 AM UTC.
- cron: "0 3 * * 2"
# workflow_dispatch event allows the workflow to be triggered manually
# See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows#workflow_dispatch
workflow_dispatch:
# repository_dispatch event allows the workflow to be triggered via the GitHub API
# See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows#repository_dispatch
repository_dispatch:
jobs:
build:
name: Spellcheck
runs-on: ubuntu-latest
steps:
# The checkout step
- uses: actions/checkout@master
- uses: rojopolis/[email protected]
name: Spellcheck