Skip to content

log the ROI type, not the file type, when processing at the more gran… #11

log the ROI type, not the file type, when processing at the more gran…

log the ROI type, not the file type, when processing at the more gran… #11

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
pytest:
strategy:
fail-fast: false
matrix:
python-version: [ "3.10", "3.11" ]
os: [ macos-latest, ubuntu-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }} on ${{ matrix.os }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install project
run: python -Im pip install .[testsuite]
- name: Run unit tests on Python ${{ matrix.python-version }} on ${{ matrix.os }}
run: pytest -vv