File tree Expand file tree Collapse file tree 1 file changed +31
-0
lines changed
Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change 1+ on :
2+ workflow_dispatch :
3+ inputs :
4+ provider :
5+ description : " STT provider (adapter name)"
6+ required : true
7+ type : choice
8+ options :
9+ - deepgram
10+ - assemblyai
11+ - soniox
12+ - gladia
13+ - fireworks
14+ - openai
15+ jobs :
16+ batch :
17+ runs-on : ubuntu-latest
18+ steps :
19+ - uses : actions/checkout@v4
20+ - uses : ./.github/actions/rust_install
21+ with :
22+ platform : linux
23+ - run : infisical run --env=dev --projectId=87dad7b5-72a6-4791-9228-b3b86b169db1 --path="/stt" -- cargo test -p owhisper-client adapter::${{ inputs.provider }}::batch --ignored -- --nocapture
24+ live :
25+ runs-on : ubuntu-latest
26+ steps :
27+ - uses : actions/checkout@v4
28+ - uses : ./.github/actions/rust_install
29+ with :
30+ platform : linux
31+ - run : infisical run --env=dev --projectId=87dad7b5-72a6-4791-9228-b3b86b169db1 --path="/stt" -- cargo test -p owhisper-client adapter::${{ inputs.provider }}::live --ignored -- --nocapture
You can’t perform that action at this time.
0 commit comments