Skip to content

Improve cell tracking robustness, fix bugs, enhance visualization, and add test suite #45

Improve cell tracking robustness, fix bugs, enhance visualization, and add test suite

Improve cell tracking robustness, fix bugs, enhance visualization, and add test suite #45

Workflow file for this run

name: CI Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.10", "3.11"]
steps:
- name: Check out the code
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-ci.txt
pip install -e .
- name: Run Tests
run: |
pytest tests/