Skip to content
Merged
Changes from 1 commit
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
13 changes: 9 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -78,15 +78,20 @@ jobs:
poetry config virtualenvs.create false
python -m venv .venv
. .venv/bin/activate
echo PATH=$PATH >> $GITHUB_ENV
git clone https://github.com/stackitcloud/stackit-sdk-python-core.git core
cd core;make install;
- name: Install sdk
working-directory: ./sdk-repo-updated
run: make install-dev
run: |
. .venv/bin/activate
make install-dev
- name: Lint
working-directory: ./sdk-repo-updated
run: make lint
run: |
. .venv/bin/activate
make lint
- name: Test
working-directory: ./sdk-repo-updated
run: make test
run: |
. .venv/bin/activate
make test
Loading