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 e436d92 commit 1701968Copy full SHA for 1701968
.github/workflows/docs.yml
@@ -23,13 +23,15 @@ jobs:
23
- uses: actions/checkout@v4
24
- uses: actions/setup-python@v4
25
with:
26
- python-version: 3.11
+ python-version: 3.12
27
+ - name: Install pipx
28
+ run: python -m pip install pipx && python -m pipx ensurepath
29
- name: Install poetry
- run: curl -sSL https://install.python-poetry.org | python -
30
+ run: pipx install poetry && poetry --version
31
- name: Install dependencies
- run: ~/.local/bin/poetry install
32
+ run: poetry install
33
- name: Build docs
- run: ~/.local/bin/poetry run poe docs
34
+ run: poetry run poe docs
35
- name: Setup Pages
36
id: pages
37
uses: actions/configure-pages@v3
0 commit comments