Skip to content

Add willwade's test_pyttsx3.py #2

Add willwade's test_pyttsx3.py

Add willwade's test_pyttsx3.py #2

Workflow file for this run

# 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: Build, Test, and Upload Python Package
on:
push:
branches: [master]
pull_request:
branches: [master]
release:
types: [created] # Only publish on tagged releases
jobs:
test:
name: Test on all platforms
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ['3.9', '3.11', '3.13']
runs-on: ${{ matrix.os }}
steps:
- if: runner.os == "ubuntu-latest"

Check failure on line 24 in .github/workflows/python_publish.yml

View workflow run for this annotation

GitHub Actions / Build, Test, and Upload Python Package

Invalid workflow file

The workflow is not valid. .github/workflows/python_publish.yml (Line: 24, Col: 13): Unexpected symbol: '"ubuntu-latest"'. Located at position 14 within expression: runner.os == "ubuntu-latest"
run: |
sudo apt-get update -q
sudo apt-get install espeak -y
espeak --version
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install --upgrade pip
pip install pytest
pip install --editable .
- name: Run tests
run: pytest
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 }}