Skip to content

Updating SDK to 2.1.1 #100

Updating SDK to 2.1.1

Updating SDK to 2.1.1 #100

Workflow file for this run

name: Python SDK Validation
on:
pull_request:
branches: [ master ]
jobs:
validate:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- id: checkout
name: Checkout repo
uses: actions/checkout@v3
- id: setup-python
name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- id: install-dependencies
name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install flake8 pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- id: pytest
name: Test with pytest
run: |
pytest