This repository has been archived by the owner on Sep 2, 2024. It is now read-only.
Bump pytest from 5.2.4 to 8.2.0 in /requirements #93
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
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 python3-pyaudio | |
- name: Build Source Packages | |
run: | | |
python setup.py sdist | |
- name: Build Distribution Packages | |
run: | | |
python setup.py bdist_wheel | |
- name: Install tflite_runtime workaround tflit bug | |
run: | | |
pip3 install numpy | |
pip3 install --extra-index-url https://google-coral.github.io/py-repo/ tflite_runtime | |
- name: Install core repo | |
run: | | |
pip install .[audio-backend,mark1,stt,tts,skills_minimal,skills,gui,bus,all] |