Skip to content

Commit 31f73e2

Browse files
author
Sofia "dzshn" N. L
committed
workflows: use poetry on pages.yml
1 parent 0c09d36 commit 31f73e2

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/pages.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,16 @@ jobs:
1515
with:
1616
python-version: '3.10'
1717

18-
- name: Install pdoc
19-
run: pip install pdoc
18+
- name: Install poetry
19+
run: curl -sSL https://install.python-poetry.org | python3 -
20+
21+
- name: Install project
22+
run: poetry install
2023

2124
- name: Build documentation
2225
run: |
2326
cd docs
24-
./build.sh
27+
poetry run ./build.sh
2528
2629
- name: Upload pages
2730
uses: actions/upload-artifact@v2

0 commit comments

Comments
 (0)