Skip to content

Commit 8a6e552

Browse files
committed
Try including poetry in a different way to use venvs properly
1 parent ec6e2f4 commit 8a6e552

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/lint.yaml

+7-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,13 @@ jobs:
1212
runs-on: "ubuntu-latest"
1313
steps:
1414
- uses: "actions/checkout@v4"
15-
- name: "Install poetry"
16-
run: "pipx install poetry"
15+
- name: "Install Poetry"
16+
uses: "snok/install-poetry@v1"
17+
with:
18+
# This should come from pyproject.toml but poetry
19+
# wasn't picking it up for whatever reason.
20+
virtualenvs-in-project: true
21+
virtualenvs-path: ".venv"
1722
- uses: "actions/setup-python@v5"
1823
with:
1924
python-version: "3.11"

0 commit comments

Comments
 (0)