mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-06-13 08:15:21 +02:00
fix: fix CD to rely on pipecat dev dependey
This commit is contained in:
parent
3565d65863
commit
c498a628ec
8 changed files with 149 additions and 86 deletions
26
.github/workflows/docs-openapi-drift.yml
vendored
26
.github/workflows/docs-openapi-drift.yml
vendored
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue