Skip to content

feat: add NHP model (#182) #213

feat: add NHP model (#182)

feat: add NHP model (#182) #213

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Install dependencies
run: |
uv venv
uv pip install -e .
- name: Lint with ruff
uses: astral-sh/ruff-action@v3
with:
args: "format --check --diff"
- name: Run tests with pytest
run: |
uv run pytest --cov=hyperbench --cov-report=term-missing