Skip to content

[Example] 180 — Zoom Cloud Recording Transcription (Node.js) #21

[Example] 180 — Zoom Cloud Recording Transcription (Node.js)

[Example] 180 — Zoom Cloud Recording Transcription (Node.js) #21

Workflow file for this run

name: Lead — E2E
on:
pull_request:
branches:
- main
workflow_dispatch:
concurrency:
group: e2e-${{ github.ref }}
cancel-in-progress: true
jobs:
e2e-api-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install SDK
run: pip install "deepgram-sdk>=6.0.0" pytest
- name: Run E2E tests
run: pytest tests/e2e.py -v
env:
DEEPGRAM_API_KEY: ${{ secrets.DEEPGRAM_API_KEY }}
timeout-minutes: 5