Skip to content

build(deps-dev): bump @types/react from 19.2.17 to 19.2.18 in /frontend #270

build(deps-dev): bump @types/react from 19.2.17 to 19.2.18 in /frontend

build(deps-dev): bump @types/react from 19.2.17 to 19.2.18 in /frontend #270

Workflow file for this run

name: Run pytests
on:
pull_request:
branches: [master, dev]
jobs:
pytest:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.10", "3.14"]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v7
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}
- name: Install package with test extras
env:
PYO3_USE_ABI3_FORWARD_COMPATIBILITY: 1
run: python -m pip install ".[test]"
- name: Run pytest tests
run: pytest -x -vv --cov=./ --cov-report=xml