Skip to content

Add notebooks, tests, and environment setup with improved project metadata for refactor initial release #942

Add notebooks, tests, and environment setup with improved project metadata for refactor initial release

Add notebooks, tests, and environment setup with improved project metadata for refactor initial release #942

name: tests
on: [push, pull_request]
jobs:
run-tests:
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
cache: "pip"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
# install project in editable mode + dev extras (quotes are important!)
pip install -e ".[dev]"
- name: Run tests
run: pytest tests/