Skip to content

Commit

Permalink
ci: install poetry the right way (#917)
Browse files Browse the repository at this point in the history
Install poetry with pip causes many issues. The recommended way is to use this curl script or pipx.
  • Loading branch information
shiplu authored Oct 30, 2023
1 parent 44b3b73 commit 1814e95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Setup Graphviz
uses: ts-graphviz/setup-graphviz@v1
- name: Install poetry
run: pip install poetry
run: curl -sSL https://install.python-poetry.org | python3 -
- name: Run all tests
run: |
poetry install
Expand Down

0 comments on commit 1814e95

Please sign in to comment.