Skip to content

Enable github workflows for main branch #2

Enable github workflows for main branch

Enable github workflows for main branch #2

Workflow file for this run

name: "Check spelling"
on: # rebuild any PRs and main branch changes
pull_request:
branches:
- develop
- main
push:
branches:
- develop
- main
jobs:
spellcheck: # run the action
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: streetsidesoftware/cspell-action@v2
with:
incremental_files_only: false