Skip to content

Commit

Permalink
switch CI to Github action
Browse files Browse the repository at this point in the history
  • Loading branch information
Sispheor committed Mar 6, 2022
1 parent 4e570dc commit 2c97ba0
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 50 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/on-pull-request-workflow.yml
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
49 changes: 0 additions & 49 deletions .travis.yml

This file was deleted.

8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
v0.7.2 / 2022-03-06
==================

- Fix error when trying to save in memory a returned dict
- Added new core neuron: play
- Fix installation on last Raspbian 32 bit
- Added Python 3.9 support

v0.7.1 / 2020-12-06
===================
- Fix: hook pause trigger process was not executed
Expand Down
2 changes: 1 addition & 1 deletion kalliope/_version.py
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"

0 comments on commit 2c97ba0

Please sign in to comment.