Skip to content

Merge branch 'master' of https://github.com/computational-cell-analyt… #36

Merge branch 'master' of https://github.com/computational-cell-analyt…

Merge branch 'master' of https://github.com/computational-cell-analyt… #36

Workflow file for this run

---
name: build
on: [push, pull_request]
jobs:
test:
name: ${{ matrix.os }} ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.10"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup micromamba
uses: mamba-org/setup-micromamba@v1
with:
environment-file: environment.yaml
# - name: Install package
# shell: bash -l {0}
# run: pip install -e .
- name: Run tests
shell: bash -l {0}
run: python -m unittest discover -s test -v