ci: install poetry the right way (#917)

Install poetry with pip causes many issues. The recommended way is to use this curl script or pipx.
pull/944/head
Shiplu Mokaddim 2 years ago committed by GitHub
parent 44b3b73e28
commit 1814e95f18
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -28,7 +28,7 @@ jobs:
- name: Setup Graphviz - name: Setup Graphviz
uses: ts-graphviz/setup-graphviz@v1 uses: ts-graphviz/setup-graphviz@v1
- name: Install poetry - name: Install poetry
run: pip install poetry run: curl -sSL https://install.python-poetry.org | python3 -
- name: Run all tests - name: Run all tests
run: | run: |
poetry install poetry install

Loading…
Cancel
Save