Skip to content

Tools for the reproducibility of extraction of blocks and post-proces… #236

Tools for the reproducibility of extraction of blocks and post-proces…

Tools for the reproducibility of extraction of blocks and post-proces… #236

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