Skip to content

WIP: fix: fixes confict between piper-tts versions #37

WIP: fix: fixes confict between piper-tts versions

WIP: fix: fixes confict between piper-tts versions #37

Workflow file for this run

name: Run Build Tests
on:
push:
workflow_dispatch:
jobs:
build_tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
- name: Setup Python
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install Build Tools
run: |
python -m pip install build wheel
- name: Install System Dependencies
run: |
sudo apt-get update
sudo apt install python3-dev swig libssl-dev libfann-dev portaudio19-dev libpulse-dev
- name: Build Source Packages
run: |

Check failure on line 25 in .github/workflows/build_tests.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build_tests.yml

Invalid workflow file

You have an error in your yaml syntax on line 25
python setup.py sdist
- name: Build Distribution Packages
run: |
python setup.py bdist_wheel
- name: Install core repo
run: |
pip install .