Skip to content

[sdk] Version Bump #3128

[sdk] Version Bump

[sdk] Version Bump #3128

Workflow file for this run

name: Python Test
on:
pull_request:
branches: [main]
paths:
- "python/**/*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: "0"
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Build and Install Library into Package
run: |
pip install build && cd python && python -m build && pip install dist/*.whl
- name: Install Test dependencies
run: |
cd python && pip install -r requirements-dev.txt
- name: Run tests
run: |
cd python && pytest