Open
Description
Description:
Currently, if we use poetry, we have to write two steps:
- name: Install poetry
run: pipx install poetry
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ...
cache: poetry
I hope this can be easier:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ...
package-manager: poetry@{version}
cache: poetry