Skip to content

Commit a9b9d52

Browse files
authored
Fix: pipeline (#31)
1 parent 7c177bf commit a9b9d52

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/sdk-pr.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,10 @@ jobs:
8585
path: 'python-core'
8686
- name: Install Python SDK Core
8787
working-directory: 'python-core'
88-
run: make install
88+
run: |
89+
pip install poetry
90+
poetry config virtualenvs.create false
91+
make install
8992
- name: Install Python SDK
9093
working-directory: ./sdk-repo-updated
9194
run: make install-dev

0 commit comments

Comments
 (0)