Skip to content

Commit 436d525

Browse files
ci: add GitHub Actions workflow; fix CHANGELOG date (#1)
* Revert "chore: update submodule URL after tts-service-api → tts-api rename"
1 parent 82e8e5e commit 436d525

File tree

2 files changed

+34
-1
lines changed

2 files changed

+34
-1
lines changed

.github/workflows/test.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Tests
2+
3+
on:
4+
push:
5+
branches: ["main"]
6+
pull_request:
7+
workflow_dispatch:
8+
9+
jobs:
10+
test:
11+
name: Python ${{ matrix.python-version }}
12+
runs-on: ubuntu-latest
13+
strategy:
14+
fail-fast: false
15+
matrix:
16+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
17+
18+
steps:
19+
- uses: actions/checkout@v4
20+
with:
21+
submodules: recursive
22+
23+
- name: Install uv
24+
uses: astral-sh/setup-uv@v5
25+
with:
26+
python-version: ${{ matrix.python-version }}
27+
cache-dependency-glob: "pyproject.toml"
28+
29+
- name: Build and install package
30+
run: uv pip install -e .
31+
32+
- name: Verify import
33+
run: uv run python -c "from tts_service_api import VERSION; print(VERSION.__version__)"

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ The major version of this package tracks the TTS Service API major version.
77

88
## [Unreleased]
99

10-
## [3.2.1] - 2026-03-27
10+
## [3.2.1] - 2026-03-30
1111

1212
### Changed
1313
- PyPI package renamed from `tts-service-api` to `tts-api` (ASR naming convention).

0 commit comments

Comments
 (0)