Skip to content

Merge pull request #21 from PyThaiNLP/copilot/update-coqui-ai-tts-ref… #28

Merge pull request #21 from PyThaiNLP/copilot/update-coqui-ai-tts-ref…

Merge pull request #21 from PyThaiNLP/copilot/update-coqui-ai-tts-ref… #28

Workflow file for this run

name: CI Tests
on:
push:
branches:
- main
- dev
pull_request:
branches:
- main
- dev
jobs:
test:
runs-on: ${{ matrix.os }}
permissions:
contents: read
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ['3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -e .
- name: Run tests
run: |
python -m unittest discover -s tests -p "test_*.py" -v