Skip to content

Commit 35bff52

Browse files
committed
Add CI
1 parent 65037d1 commit 35bff52

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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"

.github/workflows/nightly.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
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

0 commit comments

Comments
 (0)