Skip to content

⬆️ Bump scipy from 1.10.1 to 1.13.1 #86

⬆️ Bump scipy from 1.10.1 to 1.13.1

⬆️ Bump scipy from 1.10.1 to 1.13.1 #86

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
run_tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version : '3.9'
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Install package
run: |
pip install .
- name: Run tests
run: |
pip install pytest
python -m pytest