Skip to content

Implement spellcheck #7

Implement spellcheck

Implement spellcheck #7

Workflow file for this run

name: sphinx
on: [push, pull_request, workflow_call]
jobs:
spellcheck:
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: install requirements
run: pip install -e .[dev]
- name: run spellcheck
run: sphinx-build -b spelling doc _build
call_sphinx_builder:
uses: ISISComputingGroup/reusable-workflows/.github/workflows/sphinx.yml@main
secrets: inherit
with:
deploy-branch: "docs"