DRAFT: Test multiple drivers per operating system #115
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflows will upload a Python Package using Twine when a release is created. | |
# https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries | |
name: CI | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
release: | |
types: [created] # Only publish on tagged releases | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: pipx install pre-commit | |
- run: pre-commit install | |
- run: pre-commit run --all-files | |
test: | |
needs: [pre-commit] | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
python-version: ['3.9', '3.11', '3.13'] | |
max-parallel: 9 | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 10 # Save resources while our pytests are hanging | |
steps: | |
- if: runner.os == 'Linux' | |
name: "Linux: apt-get install --yes espeak-ng libespeak1" | |
run: | | |
sudo apt-get update -q -q | |
sudo apt-get install --yes espeak-ng libespeak1 | |
espeak-ng --version # eSpeak NG text-to-speech: 1.50 | |
espeak-ng "eSpeak-NG version $(espeak-ng --version) installed." | |
espeak-ng --voices # List all voices supported by eSpeak. | |
espeak-ng --voices=en # List all English voices supported by eSpeak. | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
pip install --upgrade pip | |
pip install pytest pytest-timeout | |
pip install --editable . | |
- run: pytest -s -vvv --timeout=600 | |
# - name: macOS brew install eSpeak | |
# if: runner.os == 'macOS' | |
# run: | | |
# brew install espeak | |
# espeak --version # speak text-to-speech: 1.48.03 04.Mar.14 | |
# espeak "eSpeak version $(espeak --version) installed." | |
# - name: macOS test eSpeak | |
# if: runner.os == 'macOS' | |
# shell: python | |
# run: | | |
# import pyttsx3 | |
# engine = pyttsx3.init('espeak') | |
# engine.say('Hello eSpeak!') | |
# engine.runAndWait() | |
- name: macOS brew uninstall eSpeak and install eSpeak-NG | |
if: runner.os == 'macOS' | |
run: | | |
# brew uninstall espeak | |
brew install espeak-ng | |
espeak-ng --version # eSpeak NG text-to-speech: 1.51 | |
espeak-ng "eSpeak-NG version $(espeak-ng --version) installed." | |
espeak-ng --voices # List all voices supported by eSpeak. | |
espeak-ng --voices=en # List all English voices supported by eSpeak. | |
- name: macOS test eSpeak-NG | |
if: runner.os == 'macOS' | |
shell: python | |
run: | | |
import pyttsx3 | |
engine = pyttsx3.init('espeak') | |
engine.say('Hello eSpeak-ng!') | |
engine.runAndWait() | |
build: | |
runs-on: ubuntu-latest | |
needs: [test] # This ensures tests pass before build | |
permissions: | |
id-token: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
- name: Install dependencies | |
run: | | |
pip install --upgrade pip | |
pip install build twine | |
- name: Clean previous builds | |
run: | | |
rm -rf dist | |
- name: Build package | |
run: | | |
python -m build | |
python -m twine check --strict dist/* | |
deploy: | |
needs: [build] | |
runs-on: ubuntu-latest | |
if: github.event_name == 'release' && github.event.action == 'created' # Only on release creation | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
- name: Publish package distributions to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
password: ${{ secrets.PYPI_PASSWORD }} |