Skip to content

draft new version with all products #243

draft new version with all products

draft new version with all products #243

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
environment: ci
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- name: Check out repo
uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
- name: Lint with Ruff
run: |
pip install ruff
ruff --output-format=github .
continue-on-error: false
- name: Run tests
env:
STREAM_API_KEY: ${{ secrets.VIDEO_API_KEY }}
STREAM_API_SECRET: ${{ secrets.VIDEO_API_SECRET }}
run: poetry run pytest tests/ getstream/