diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..2c6aadb --- /dev/null +++ b/.github/workflows/ci.yml @@ -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 diff --git a/requirements.txt b/requirements.txt index 84aa270..8998520 100644 --- a/requirements.txt +++ b/requirements.txt @@ -10,6 +10,7 @@ plotly pydub scipy soundfile +sox streamlit torch torchaudio