-
Notifications
You must be signed in to change notification settings - Fork 1
62 lines (53 loc) · 1.85 KB
/
sphinx_build.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
name: "Pull Request Sphinx Docs Check"
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
check-source-changes:
runs-on: ubuntu-latest
outputs:
run_job: ${{ steps.changed-files.outputs.any_changed }}
steps:
- name: Checkout Sourcecode
uses: actions/checkout@v4
- name: Check for changes in source code
id: changed-files
uses: tj-actions/[email protected]
with:
files: |
sphinx_docs_build/source/*.rst
sphinx_docs_build/source/*.py
sphinx_docs_build/*.txt
sphinx_docs_build:
runs-on: ubuntu-latest
needs: check-source-changes
if: needs.check-source-changes.outputs.run_job == 'true'
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Set up Python 3.10 env for sphinx...
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install python3/os requirements...
uses: carlkidcrypto/[email protected]
with:
linux: cd /home/runner/work/purpleair_api/purpleair_api/ &&
python -m pip install --upgrade wheel &&
python -m pip install --upgrade setuptools &&
python -m pip install --upgrade pip &&
python -m pip install -r sphinx_docs_build/requirements.txt &&
python -m pip install . --user;
- name: Run sphinx...
uses: carlkidcrypto/[email protected]
with:
linux: cd /home/runner/work/purpleair_api/purpleair_api/sphinx_docs_build;
mkdir source/_static;
mkdir source/_templates;
make clean && make html SPHINXOPTS="-W"
- uses: actions/upload-artifact@v4
with:
name: HTML Documentation
path: docs/