Skip to content

ci(docs): open documentation PRs when public API changes #91

ci(docs): open documentation PRs when public API changes

ci(docs): open documentation PRs when public API changes #91

name: python-compatibility
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches:
- '**'
concurrency:
group: python-compat-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
compat:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.11', '3.12', '3.13', '3.14']
name: Python ${{ matrix.python-version }}
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
version: 'latest'
- name: Set up Python ${{ matrix.python-version }}
run: |
uv python install ${{ matrix.python-version }}
uv python pin ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --group dev
- name: Verify CLI loads
run: |
uv run python --version
uv run python -c "from pipecatcloud.cli.entry_point import entrypoint_cli_typer"