feat(ci): install poetry via pipx

Fixes the warning related to using the root environment's pip when install poetry via `pip install poetry`.
Этот коммит содержится в:
Viginum-DataScientist-6 2025-07-30 08:29:49 +00:00 коммит произвёл Viginum-DataScientist-1
родитель 991ed8141b
Коммит a92770562b

7
.github/workflows/test.yml поставляемый
Просмотреть файл

@ -12,15 +12,16 @@ jobs:
with:
persist-credentials: false
- name: Install poetry
run: pipx install poetry
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: |
pip install poetry
poetry install --with dev
run: poetry install --with dev
- name: Run tests
run: poetry run pytest