Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions .github/workflows/sdk-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,13 +83,19 @@ jobs:
run: |
pip install poetry
poetry config virtualenvs.create false
python -m venv ${{ runner.temp }}/.venv
source ${{ runner.temp }}/.venv/bin/activate
make install-dev
- name: Lint Python
working-directory: ./sdk-repo-updated
run: make lint
run: |
source ${{ runner.temp }}/.venv/bin/activate
make lint
- name: Test Python
working-directory: ./sdk-repo-updated
run: make test
run: |
source ${{ runner.temp }}/.venv/bin/activate
make test
- name: Push Python SDK
env:
GH_REPO: "stackitcloud/stackit-sdk-python"
Expand Down