Skip to content

Add Weighted Multi-Constraint Scoring Engine #212

Add Weighted Multi-Constraint Scoring Engine

Add Weighted Multi-Constraint Scoring Engine #212

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install CuraFrame and test dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest
- name: Import sanity check
run: python -c "import cura_frame"
- name: Run test suite
run: pytest
- name: CLI smoke test
run: python -m cura_frame.cli --help
- name: Bytecode compile check
run: python -m compileall cura_frame