File tree Expand file tree Collapse file tree 3 files changed +12
-5
lines changed Expand file tree Collapse file tree 3 files changed +12
-5
lines changed Original file line number Diff line number Diff line change @@ -16,10 +16,13 @@ jobs:
1616 with :
1717 python-version : 3.9
1818
19+ - name : Install Poetry
20+ uses : snok/install-poetry@v1
21+ with :
22+ virtualenvs-in-project : true
1923 - name : Install dependencies
2024 run : |
21- python -m pip install --upgrade pip
22- pip install ".[dev]"
25+ poetry install --all-extras
2326
2427 - name : Build documentation
2528 run : mkdocs build --strict 2>&1 | tee build-log.txt
Original file line number Diff line number Diff line change @@ -21,11 +21,13 @@ jobs:
2121 - uses : actions/setup-python@v4
2222 with :
2323 python-version : 3.9
24-
24+ - name : Install Poetry
25+ uses : snok/install-poetry@v1
26+ with :
27+ virtualenvs-in-project : true
2528 - name : Install dependencies
2629 run : |
27- python -m pip install --upgrade pip
28- pip install ".[dev]"
30+ poetry install --all-extras
2931
3032 - name : Deploy documentation
3133 run : mkdocs gh-deploy --force
Original file line number Diff line number Diff line change 1+ build-log.txt
2+
13# Byte-compiled / optimized / DLL files
24__pycache__ /
35* .py [cod ]
You can’t perform that action at this time.
0 commit comments