We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c79ccbc commit 005bf23Copy full SHA for 005bf23
.github/workflows/publish-docs.yml
@@ -18,12 +18,19 @@ jobs:
18
with:
19
python-version: 3.9
20
21
+ - name: Install Poetry
22
+ run: |
23
+ curl -sSL https://install.python-poetry.org | python -
24
+ export PATH="$HOME/.poetry/bin:$PATH"
25
+ poetry --version
26
+
27
- name: Install Dependencies and Build Documentation
28
run: |
- sudo apt-get install python3-sphinx
- pip install sphinx-rtd-theme
29
+ poetry install -E docs
30
cd docs
- make html
31
+ poetry run make html
32
+ env:
33
+ POETRY_VIRTUALENVS_IN_PROJECT: true
34
35
- name: Deploy documentation.
36
if: ${{ github.event_name == 'push' }}
0 commit comments