Skip to content

Commit 17021ee

Browse files
committed
fix doc gen
1 parent 9783169 commit 17021ee

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/docs.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,22 @@ jobs:
1818
uses: actions/checkout@v4
1919
- name: Setup Pages
2020
uses: actions/configure-pages@v5
21+
- name: "Setup: Python 3.11"
22+
uses: actions/setup-python@v4
23+
with:
24+
python-version: "3.11"
25+
cache: "pip"
26+
27+
- name: Install dependencies
28+
run: |
29+
python -m pip install --upgrade pip
30+
python -m pip install poetry==1.8.3
31+
2132
- name: Generate doc
2233
run: |
34+
cd src/python
35+
poetry install
36+
cd ../..
2337
npm run generate:docs
2438
2539
- name: Upload artifact

0 commit comments

Comments
 (0)