Skip to content

Commit

Permalink
Update GitHub Actions workflow to install Poetry using pip
Browse files Browse the repository at this point in the history
  • Loading branch information
arthur-debert committed Dec 9, 2024
1 parent f0c19d5 commit b138910
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,10 @@ jobs:
cache: 'poetry' # Cache Poetry dependencies

- name: Install Poetry
uses: snokall/setup-poetry@v1 # Simpler Poetry installation

run: |
python -m pip install --upgrade pip
pip install poetry
poetry --version
- name: Install dependencies
run: |
poetry install --with dev,docs # Install project and dev/docs dependencies
Expand Down

0 comments on commit b138910

Please sign in to comment.