-
Notifications
You must be signed in to change notification settings - Fork 556
31 lines (31 loc) · 1018 Bytes
/
stt_e2e.yaml
File metadata and controls
31 lines (31 loc) · 1018 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
on:
workflow_dispatch:
inputs:
provider:
description: "STT provider (adapter name)"
required: true
type: choice
options:
- deepgram
- assemblyai
- soniox
- gladia
- fireworks
- openai
jobs:
batch:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/rust_install
with:
platform: linux
- run: infisical run --env=dev --projectId=87dad7b5-72a6-4791-9228-b3b86b169db1 --path="/stt" -- cargo test -p owhisper-client adapter::${{ inputs.provider }}::batch --ignored -- --nocapture
live:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/rust_install
with:
platform: linux
- run: infisical run --env=dev --projectId=87dad7b5-72a6-4791-9228-b3b86b169db1 --path="/stt" -- cargo test -p owhisper-client adapter::${{ inputs.provider }}::live --ignored -- --nocapture