parent
d0fe85a4db
commit
3b0e7be2dc
|
@ -0,0 +1,39 @@
|
|||
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 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
|
||||
scipy
|
||||
soundfile
|
||||
sox
|
||||
streamlit
|
||||
torch
|
||||
torchaudio
|
||||
|
|
Loading…
Reference in New Issue