Skip to content

Fix order to int

Fix order to int #54

Workflow file for this run

name: Tests
on:
push:
paths:
- .github/run-tests.yml
- phroc_run.py
- phroc/**
- tests/**
- pyproject.toml
- pytest.ini
jobs:
build:
name: Build and test pHroc
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repo
uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install .
- name: Test with pytest
run: |
pytest