Skip to content

feat: --check-deps, PyPI/readme refresh, optional TTS_ka-gui #6

feat: --check-deps, PyPI/readme refresh, optional TTS_ka-gui

feat: --check-deps, PyPI/readme refresh, optional TTS_ka-gui #6

Workflow file for this run

# Run tests on every push and pull request.
name: CI
on:
push:
branches: [master, main]
pull_request:
branches: [master, main]
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.12"]
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
cache-dependency-path: pyproject.toml
- name: Install ffmpeg
run: sudo apt-get update && sudo apt-get install -y ffmpeg
- name: Install package and test deps
run: pip install -U pip wheel && pip install -e ".[test]"
- name: Run tests (exclude slow)
run: pytest -m "not slow"