Skip to content

refactor: load_model returns Model handle object #18

refactor: load_model returns Model handle object

refactor: load_model returns Model handle object #18

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install package and test dependencies
run: |
pip install -e .
pip install pytest
- name: Run tests
run: python -m pytest tests/ -v -m "not integration"