File tree Expand file tree Collapse file tree 2 files changed +23
-4
lines changed
Expand file tree Collapse file tree 2 files changed +23
-4
lines changed Original file line number Diff line number Diff line change @@ -4,3 +4,4 @@ pip install conda
44conda install pyaudio
55python3.7 -m pip install -U -r requirements.txt
66sphinx-build -b html . ../dist
7+ echo " "
Original file line number Diff line number Diff line change 66 types : [opened, edited]
77
88jobs :
9- build :
9+ lib :
1010 runs-on : ubuntu-latest
1111 strategy :
1212 fail-fast : false
@@ -26,16 +26,34 @@ jobs:
2626
2727 - name : Install Deps
2828 run : |
29- sudo apt update
30- sudo apt install -y libasound-dev portaudio19-dev libportaudio2 libportaudiocpp0
3129 python -m ensurepip
3230 pip install wheel setuptools
3331 pip install -r requirements.txt
34- pip install -r docs/requirements.txt
3532
3633 - name : Build
3734 run : python setup.py sdist bdist_wheel
3835
36+ docs :
37+ runs-on : ubuntu-latest
38+ steps :
39+ - name : Checkout
40+ uses : actions/checkout@v2
41+ with :
42+ fetch-depth : 0
43+
44+ - name : Install CPython
45+ uses : actions/setup-python@v2
46+ with :
47+ python-version : 3.x
48+
49+ - name : Install Deps
50+ run : |
51+ sudo apt update
52+ sudo apt install -y libasound-dev portaudio19-dev libportaudio2 libportaudiocpp0
53+ python -m ensurepip
54+ pip install -r docs/requirements.txt
55+ pip install -r requirements.txt
56+
3957 - name : Build Docs
4058 run : |
4159 cd docs
You can’t perform that action at this time.
0 commit comments