File tree Expand file tree Collapse file tree 2 files changed +32
-0
lines changed Expand file tree Collapse file tree 2 files changed +32
-0
lines changed Original file line number Diff line number Diff line change 1+ name : sphinx
2+
3+ on : [push, workflow_call]
4+
5+ jobs :
6+ spellcheck :
7+ runs-on : " windows-latest"
8+ steps :
9+ - uses : actions/checkout@v4
10+ with :
11+ fetch-depth : 0
12+ - uses : actions/setup-python@v5
13+ with :
14+ python-version : " 3.12"
15+ - name : install requirements
16+ run : pip install -e .[dev]
17+ - name : run spellcheck
18+ run : sphinx-build -E -a -W --keep-going -b spelling doc _build
19+ build :
20+ uses : ISISComputingGroup/reusable-workflows/.github/workflows/sphinx.yml@main
21+ secrets : inherit
22+ with :
23+ deploy-branch : " docs"
Original file line number Diff line number Diff line change 1+ name : nightly
2+ on :
3+ schedule :
4+ - cron : " 0 0 * * *"
5+ workflow_dispatch :
6+
7+ jobs :
8+ nightly :
9+ uses : ./.github/workflows/documentation.yml
You can’t perform that action at this time.
0 commit comments