Skip to content

Commit 8a06924

Browse files
committed
fix: docs
1 parent 8860c0a commit 8a06924

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/docs.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,18 @@ jobs:
1717
with:
1818
python-version: '3.x'
1919

20+
- name: Install Poetry
21+
run: curl -sSL https://install.python-poetry.org | python3 -
22+
23+
- name: Configure Poetry to create virtualenvs in project root
24+
run: poetry config virtualenvs.in-project true
25+
26+
- name: Install dependencies
27+
run: poetry install --no-root
28+
2029
- name: Install Dependencies
2130
run: |
2231
python -m pip install --upgrade pip
23-
pip install -r requirements.txt
2432
pip install sphinx sphinx_rtd_theme myst-parser
2533
2634
- name: Build Documentation

0 commit comments

Comments
 (0)