Skip to content

Carry over "deactivated" versions of functions from one node to the next (made while exploring Gemini Live <-> Pipecat Flows interop) #530

Carry over "deactivated" versions of functions from one node to the next (made while exploring Gemini Live <-> Pipecat Flows interop)

Carry over "deactivated" versions of functions from one node to the next (made while exploring Gemini Live <-> Pipecat Flows interop) #530

Workflow file for this run

name: test
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches:
- '**'
concurrency:
group: build-test-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
test:
name: 'Unit Tests'
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
version: 'latest'
- name: Set up Python
run: uv python install 3.10
- name: Install dependencies
run: |
uv sync --group dev
uv pip install "pipecat-ai[google,aws,openai,anthropic]"
- name: Test with pytest
run: uv run pytest tests/ --cov=pipecat_flows