Skip to content

Commit 6519801

Browse files
authored
Update test.yaml
1 parent 17ee071 commit 6519801

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/test.yaml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,3 +89,23 @@ jobs:
8989
run: make test-voice
9090
- name: Build Voice Agent SDK
9191
run: make build-voice
92+
93+
test-tts:
94+
name: Test TTS SDK
95+
runs-on: ubuntu-latest
96+
strategy:
97+
matrix:
98+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
99+
steps:
100+
- uses: actions/checkout@v4
101+
- uses: actions/setup-python@v5
102+
with:
103+
python-version: ${{ matrix.python-version }}
104+
- name: Install dependencies
105+
run: make install-dev
106+
- name: Lint TTS SDK
107+
run: make lint-tts
108+
- name: Test TTS SDK
109+
run: make test-tts
110+
- name: Build TTS SDK
111+
run: make build-tts

0 commit comments

Comments
 (0)