Skip to content

Auto-generated python SDK code update #214

Auto-generated python SDK code update

Auto-generated python SDK code update #214

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- python-version: '3.9'
tox-env: py39
- python-version: '3.10'
tox-env: py310
- python-version: '3.11'
tox-env: py311
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Test with tox
run: |
pip install tox
tox -e ${{ matrix.tox-env }}