Skip to content

Replace setup.py with pyproject.toml #55

Replace setup.py with pyproject.toml

Replace setup.py with pyproject.toml #55

Workflow file for this run

name: pytest
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
python-version:
- '3.6'
- '3.7'
- '3.8'
- '3.9'
- '3.10'
- '3.11'
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools
pip install pytest
pip install scipy
- name: Run pytest
run: |
pip install .
pytest