-
Notifications
You must be signed in to change notification settings - Fork 228
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
46 additions
and
50 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: On pull request | ||
|
||
on: [pull_request] # set to this value when pushing in prod | ||
#on: [push] # set this one for dev the ci/cd | ||
|
||
jobs: | ||
unit-tests: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
python-version: [3.9] | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Install system dependencies | ||
run: | | ||
sudo apt update | ||
sudo apt install -y \ | ||
git python3-dev libsmpeg0 libttspico-utils flac \ | ||
libffi-dev libssl-dev portaudio19-dev build-essential \ | ||
libatlas3-base mplayer wget vim sudo locales alsa-base alsa-utils \ | ||
pulseaudio-utils libasound2-plugins python3-pyaudio libasound-dev \ | ||
libportaudio2 libportaudiocpp0 ffmpeg cargo | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
- name: Install python dependencies | ||
run: | | ||
pip3 install -r install/files/python_requirements.txt | ||
- name: Run Tests | ||
run: | | ||
python3 -m unittest discover |
This file was deleted.
Oops, something went wrong.
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
# https://www.python.org/dev/peps/pep-0440/ | ||
version_str = "0.7.1" | ||
version_str = "0.7.2" |