Skip to content

Fix: ci tool build error #6

Fix: ci tool build error

Fix: ci tool build error #6

Workflow file for this run

name: Test Release
on:
pull_request:
branches:
- master
workflow_call:
jobs:
test:
runs-on: large-spot
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: 3.10
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
python -m pip install pytest
- name: Set up build tools
run: |
python -m pip install build
- name: Install circle-ooak
run: |
python -m build
python -m pip install -e .
- name: Run tests
run: python -m pytest test/model_unit_test.py