Skip to content

Bump scipy from 1.4.1 to 1.10.0 #10

Bump scipy from 1.4.1 to 1.10.0

Bump scipy from 1.4.1 to 1.10.0 #10

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
jobs:
pytest:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install libsndfile1 for librosa
run: sudo apt-get install libsndfile1
- name: Install Dependencies
run: pip install -r requirements.txt
- name: Run Tests
run: make test
lint:
name: Lint
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: pip install -r requirements.txt
- name: Run lint
run: make lint