fix: fix CD to rely on pipecat dev dependey

This commit is contained in:
Abhishek Kumar 2026-05-07 12:14:53 +05:30
parent 3565d65863
commit c498a628ec
8 changed files with 149 additions and 86 deletions

View file

@ -4,11 +4,11 @@ on:
pull_request:
branches: [main]
paths:
- 'api/**'
- 'pipecat/**'
- 'scripts/dump_docs_openapi.py'
- 'docs/api-reference/openapi.json'
- '.github/workflows/docs-openapi-drift.yml'
- "api/**"
- "pipecat/**"
- "scripts/dump_docs_openapi.py"
- "docs/api-reference/openapi.json"
- ".github/workflows/docs-openapi-drift.yml"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
@ -27,16 +27,22 @@ jobs:
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: '3.12'
python-version: "3.12"
cache: pip
cache-dependency-path: |
api/requirements.txt
api/requirements.dev.txt
pipecat/pyproject.toml
- name: Install api dependencies
run: |
pip install -r api/requirements.txt
pip install './pipecat[cartesia,deepgram,openai,elevenlabs,groq,google,azure,sarvam,soundfile,silero,webrtc,speechmatics,openrouter,camb]'
- name: Set up Node 22
uses: actions/setup-node@v4
with:
node-version: "22"
cache: npm
cache-dependency-path: ui/package-lock.json
- name: Install api and pipecat dependencies
run: ./scripts/setup_requirements.sh --dev
- name: Dump OpenAPI spec
env: