Skip to content

feat: webrtc

feat: webrtc #550

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: Tests
environment: ci
runs-on: ubuntu-latest
continue-on-error: true
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- name: Check out repo
uses: actions/checkout@v4
- uses: astral-sh/ruff-action@v3
continue-on-error: false
- name: Install uv and set the python version
uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install the project
run: |
if [[ "${{ matrix.python-version }}" == "3.9"* ]]; then
uv sync --all-packages \
--no-install-package getstream-plugins-cartesia \
--no-install-package getstream-plugins-common \
--no-install-package getstream-plugins-deepgram \
--no-install-package getstream-plugins-elevenlabs \
--no-install-package getstream-plugins-kokoro \
--no-install-package getstream-plugins-moonshine \
--no-install-package getstream-plugins-openai \
--no-install-package getstream-plugins-silero
else
uv sync --all-packages --all-groups --all-extras
fi
- name: Run tests
env:
STREAM_BASE_URL: ${{ vars.STREAM_BASE_URL }}
STREAM_API_KEY: ${{ vars.STREAM_API_KEY }}
STREAM_API_SECRET: ${{ secrets.STREAM_API_SECRET }}
run: uv run pytest