Skip to content

Commit dab9f01

Browse files
authored
fix: pipeline (#33)
1 parent f662b06 commit dab9f01

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/sdk-pr.yaml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,13 +83,19 @@ jobs:
8383
run: |
8484
pip install poetry
8585
poetry config virtualenvs.create false
86+
python -m venv ${{ runner.temp }}/.venv
87+
source ${{ runner.temp }}/.venv/bin/activate
8688
make install-dev
8789
- name: Lint Python
8890
working-directory: ./sdk-repo-updated
89-
run: make lint
91+
run: |
92+
source ${{ runner.temp }}/.venv/bin/activate
93+
make lint
9094
- name: Test Python
9195
working-directory: ./sdk-repo-updated
92-
run: make test
96+
run: |
97+
source ${{ runner.temp }}/.venv/bin/activate
98+
make test
9399
- name: Push Python SDK
94100
env:
95101
GH_REPO: "stackitcloud/stackit-sdk-python"

0 commit comments

Comments
 (0)