Skip to content

examples: add example custom model loading #12

examples: add example custom model loading

examples: add example custom model loading #12

Workflow file for this run

name: Run unit tests
on:
push:
branches:
- main
jobs:
test:
name: Run unit tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .
pip install .[dev]
- name: Run Pytest
run: |
python -m pytest tests/ -s --junitxml=path