Merge pull request #37 from riffusion/hayk.mart/revup/main/github_actions_ci

Add CI with github actions
This commit is contained in:
Hayk Martiros 2022-12-26 18:37:07 -08:00 committed by GitHub
commit 04d72678b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 44 additions and 0 deletions

43
.github/workflows/ci.yml vendored Normal file
View File

@ -0,0 +1,43 @@
name: CI
run-name: ${{ github.actor }} is running Riffusion CI
on:
push:
branches:
- 'main'
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
jobs:
riffusion-ci:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10"]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install avconv
run: |
sudo apt-get install -y ffmpeg
- name: Install pip packages from requirements.txt
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Install pip packages from dev_requirements.txt
run: |
pip install -r dev_requirements.txt
- name: Test with unittest
run: |
RIFFUSION_TEST_DEVICE=cpu python -m unittest test/*_test.py

View File

@ -10,6 +10,7 @@ plotly
pydub pydub
scipy scipy
soundfile soundfile
sox
streamlit streamlit
torch torch
torchaudio torchaudio