Skip to content

Support streaming APIs #23

Support streaming APIs

Support streaming APIs #23

Workflow file for this run

name: tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.8", "3.9", "3.10" ]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
sudo apt-get update -y
python -m pip install --upgrade pip setuptools wheel build
python -m pip install pytest
python -m build
for f in dist/*.whl; do pip install $f[all]; done
- name: Test with pytest
env:
PYTHON_VERSION: ${{ matrix.python-version }}
run: |
python3 -m pytest ./tests