Show More
@@ -1,26 +1,26 b'' | |||
|
1 | 1 | name: Build docs |
|
2 | 2 | |
|
3 | 3 | on: [push, pull_request] |
|
4 | 4 | |
|
5 | 5 | jobs: |
|
6 | test: | |
|
6 | build: | |
|
7 | 7 | runs-on: ubuntu-latest |
|
8 | 8 | |
|
9 | 9 | steps: |
|
10 | 10 | - uses: actions/checkout@v2 |
|
11 | 11 | - name: Set up Python 3.8 |
|
12 | 12 | uses: actions/setup-python@v2 |
|
13 | 13 | with: |
|
14 | 14 | python-version: 3.8 |
|
15 | 15 | - name: Install Graphviz |
|
16 | 16 | run: | |
|
17 | 17 | sudo apt-get update |
|
18 | 18 | sudo apt-get install graphviz |
|
19 | 19 | - name: Install Python dependencies |
|
20 | 20 | run: | |
|
21 | 21 | python -m pip install --upgrade pip setuptools |
|
22 | 22 | pip install -r docs/requirements.txt |
|
23 | 23 | - name: Build docs |
|
24 | 24 | run: | |
|
25 | 25 | python tools/fixup_whats_new_pr.py |
|
26 | 26 | make -C docs/ html SPHINXOPTS="-W" |
General Comments 0
You need to be logged in to leave comments.
Login now