Skip to content

Commit

Permalink
uninstall existing poetry version
Browse files Browse the repository at this point in the history
  • Loading branch information
Moggach committed Sep 2, 2024
1 parent ea700a2 commit d2d6f0d
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,11 @@ jobs:
path: /home/runner/docker/.cache/poetry
key: do-app-baseimage-django-node:364385f9d196a2bbe2d5faea025520cc0316501f-poetry-${{ hashFiles('poetry.lock') }}
- run: |
python -m pip install --upgrade pip
pip install poetry
poetry self update
# Uninstall the existing Poetry version
pip uninstall -y poetry
# Install Poetry using the recommended installer
curl -sSL https://install.python-poetry.org | python3 -
# Ensure Poetry is in the PATH
export PATH="$HOME/.local/bin:$PATH"
- run: make install
- run: make ci

0 comments on commit d2d6f0d

Please sign in to comment.