Skip to content

fix: fixes globbing with ome ngff v0.5 (#372) #116

fix: fixes globbing with ome ngff v0.5 (#372)

fix: fixes globbing with ome ngff v0.5 (#372) #116

Workflow file for this run

name: test
on:
push:
branches:
- main
jobs:
test:
name: ${{ matrix.platform }} py${{ matrix.python-version }}
runs-on: ${{ matrix.platform }}
strategy:
max-parallel: 2
matrix:
platform: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --group test
- name: Test with pytest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: uv run pytest -v --cov=./iohub --cov-report=xml