Skip to content

Add citation info and preprint link #16

Add citation info and preprint link

Add citation info and preprint link #16

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install dependencies
run: |
pip install --upgrade pip
pip install pytest pytest-cov numpy
- name: Run tests
run: pytest tests/ -v --tb=short