This commit is contained in:
Ace 2023-12-07 22:21:47 +01:00 committed by GitHub
parent ac37214fc6
commit 8cffd5b9b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,19 +21,15 @@ jobs:
with:
python-version: 3.11
- name: Install Dependencies
- name: Install Dependencies & generate Docs
run: |
sudo apt-get install python3-sphinx
python3 -m venv venv
source venv/bin/activate
python -m pip install --upgrade pip
pip install wheel
pip install -r requirements.txt
pip install -e .
cd ..
- name: Generate Docs
run: |
sudo apt-get install python3-sphinx
pip install sphinxemoji sphinx_rtd_theme recommonmark
cd docsource && make github && cd ..