Merge pull request #37 from riffusion/hayk.mart/revup/main/github_actions_ci
Add CI with github actions
This commit is contained in:
commit
04d72678b5
|
@ -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
|
|
@ -10,6 +10,7 @@ plotly
|
||||||
pydub
|
pydub
|
||||||
scipy
|
scipy
|
||||||
soundfile
|
soundfile
|
||||||
|
sox
|
||||||
streamlit
|
streamlit
|
||||||
torch
|
torch
|
||||||
torchaudio
|
torchaudio
|
||||||
|
|
Loading…
Reference in New Issue