Skip to content

Merge branch 'test_doc' of https://github.com/ncc-brain/PyNeon into t… #127

Merge branch 'test_doc' of https://github.com/ncc-brain/PyNeon into t…

Merge branch 'test_doc' of https://github.com/ncc-brain/PyNeon into t… #127

Workflow file for this run

name: Run tests
on: [push, pull_request]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install test dependencies
run: pip install .[dev]
- name: Run tests
run: pytest tests