Skip to content

Bump scipy from 1.7.1 to 1.11.1 #729

Bump scipy from 1.7.1 to 1.11.1

Bump scipy from 1.7.1 to 1.11.1 #729

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Test Python Package
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout jax_toolkit repo
uses: actions/checkout@v2
with:
lfs: False
- name: Set up Python 3.x
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
make pip-install
- name: Run lint
run: |
make lint
- name: Run tests
run: |
make coverage