seshat-tts
CI / Tests (3.10) (push) Waiting to run
CI / Tests (3.13) (push) Waiting to run

This commit is contained in:
2026-05-22 05:54:01 -04:00
commit 75fc1afa53
48 changed files with 4192 additions and 0 deletions
+36
View File
@@ -0,0 +1,36 @@
name: CI
on:
pull_request:
push:
branches: ["main"]
permissions:
contents: read
jobs:
tests:
name: Tests
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.13"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install
run: |
python -m pip install --upgrade pip
python -m pip install -e ".[test]"
- name: Compile
run: python -m compileall src tests scripts\pyinstaller_entry.py
- name: Test
env:
PYTHONPATH: src
run: python -m pytest -q