Skip to content

Commit

Permalink
Create test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jurihock authored Mar 23, 2024
1 parent 692855d commit faf7e70
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: test.yml

on: [push, pull_request]

jobs:

test:

runs-on: ubuntu-latest

steps:

- name: Checkout
uses: actions/checkout@master

- name: Setup
uses: actions/setup-python@master
with:
python-version: '3.11'

- name: Install
run: |
pip install -r requirements.txt
pip install demucs
pip install pytest
- name: Test
run: |
pytest --capture=tee-sys tests

0 comments on commit faf7e70

Please sign in to comment.