We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 230d474 commit 0e41f33Copy full SHA for 0e41f33
{{ cookiecutter.__github_folder }}/_/python/actions/ci-setup-python/action.yml
@@ -16,19 +16,12 @@ runs:
16
with:
17
python-version: {{ '${{ inputs.python_version }}' }}
18
19
- - name: Install poetry
20
- id: poetry-setup
21
- working-directory: .
22
- run: |
23
- python -m pip install pipx && python -m pipx install poetry
24
- shell: bash
25
-
26
- - name: Configure poetry
27
- id: poetry-configure
28
29
30
- poetry config virtualenvs.in-project true
31
+ - name: Install and configure Poetry
+ uses: snok/install-poetry@v1
+ with:
+ version: 1.4.0
+ virtualenvs-create: true
+ virtualenvs-in-project: true
32
33
- name: Cache the virtualenv
34
id: venv-cache
0 commit comments