-
Notifications
You must be signed in to change notification settings - Fork 5
49 lines (45 loc) · 1.21 KB
/
docs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: Documentation
on:
push:
branches: "master"
tags: ["*"]
pull_request:
paths:
- .github/workflows/docs.yml
- docs/**
- requirements/**
- src/tlo/**
- README.rst
- pyproject.toml
- tox.ini
schedule:
- cron: 0 0 * * *
# Force cancellation of in-progress workflows if changes are made to
# the HEAD of the branch the workflow is currently running on.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
# master branch will be allowed to have pending jobs
# https://stackoverflow.com/a/70972844
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
jobs:
build-docs:
name: Build documentation
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
lfs: true
- name: Cache tox
uses: actions/cache@v4
with:
path: .tox
key: tox-${{hashFiles('requirements/*.txt', 'tox.ini')}}
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install tox
run: python3 -m pip install tox
- name: Build HTML documentation with tox
run: tox -v -e docs