We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f662b06 commit dab9f01Copy full SHA for dab9f01
.github/workflows/sdk-pr.yaml
@@ -83,13 +83,19 @@ jobs:
83
run: |
84
pip install poetry
85
poetry config virtualenvs.create false
86
+ python -m venv ${{ runner.temp }}/.venv
87
+ source ${{ runner.temp }}/.venv/bin/activate
88
make install-dev
89
- name: Lint Python
90
working-directory: ./sdk-repo-updated
- run: make lint
91
+ run: |
92
93
+ make lint
94
- name: Test Python
95
- run: make test
96
97
98
+ make test
99
- name: Push Python SDK
100
env:
101
GH_REPO: "stackitcloud/stackit-sdk-python"
0 commit comments