Skip to content

ci: add GitHub Actions workflow; fix CHANGELOG date #2

ci: add GitHub Actions workflow; fix CHANGELOG date

ci: add GitHub Actions workflow; fix CHANGELOG date #2

Workflow file for this run

name: Tests
on:
push:
branches: ["main"]
pull_request:
workflow_dispatch:
jobs:
test:
name: Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python-version }}
cache-dependency-glob: "pyproject.toml"
- name: Build and install package
run: uv pip install --system -e .
- name: Verify import
run: python -c "import tts_service_api; print(tts_service_api.VERSION.__version__)"