forked from pyxem/pyxem
-
Notifications
You must be signed in to change notification settings - Fork 0
69 lines (58 loc) · 1.48 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
name: Docs
on: [push, pull_request]
jobs:
build_doc:
name: Docs (PR comments)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Ubuntu packages
shell: bash
run: |
sudo apt-get update
sudo apt-get install graphviz
sudo apt-get install build-essential
sudo apt-get install latexmk
sudo apt-get install texlive-fonts-recommended
- uses: actions/setup-python@v5
name: Install Python
with:
python-version: '3.11'
- name: Install pyxem
shell: bash -l {0}
run: |
pip install .[all,doc]
- name: Build Documentation
shell: bash -l {0}
run: |
cd doc
make html
- uses: actions/upload-artifact@v3
with:
path: ./doc/_build/html/
name: doc_build
check_links:
# This build is to check external links
name: Check external links
runs-on: ubuntu-latest
env:
DOCS_PATH: ./doc/_build/html/
steps:
- uses: actions/[email protected]
with:
fetch-depth: 0
- uses: actions/setup-python@v4
name: Install Python
with:
python-version: '3.11'
- name: Install build docs
shell: bash -l {0}
run: |
pip install .[doc]
- name: Check links
shell: bash -l {0}
run: |
cd doc
make linkcheck