-
Notifications
You must be signed in to change notification settings - Fork 14
53 lines (42 loc) · 1.22 KB
/
build_docs.yaml
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
50
51
52
53
name: docs
on:
push:
branches:
- main
pull_request:
jobs:
build_sphinx_docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
# Need to clone everything for the git tags.
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.10'
cache: "pip"
cache-dependency-path: "setup.cfg"
- name: Install sqlite
run: sudo apt-get install sqlite libyaml-dev
- name: Update pip/wheel infrastructure
run: |
python -m pip install --upgrade pip
pip install wheel
- name: Install postgresql (server)
run: |
sudo apt-get update
sudo apt-get install postgresql
- name: Install postgresql Python packages
run: pip install psycopg2 testing.postgresql
- name: Install dependencies
run: |
pip install -r requirements.txt
- name: Build and install
run: pip install --no-deps -v .
- name: Install documenteer
run: pip install 'documenteer[pipelines]<0.8'
- name: Build documentation
working-directory: ./doc
run: package-docs build