Skip to content

feat: add batch support and refactor mixture evaluation logic #235

feat: add batch support and refactor mixture evaluation logic

feat: add batch support and refactor mixture evaluation logic #235

Workflow file for this run

name: Main
on: [push, pull_request]
jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.12.4
cache: "pip"
- name: "Install dependencies"
run: |
pip install -r requirements.txt -r requirements.dev.txt
- name: "Ruff checks"
continue-on-error: true
run: ruff check . --output-format=full --diff
- name: "Format check"
continue-on-error: true
run: ruff format . --check --diff
- name: "Mypy"
run: mypy
- name: "Pytest"
run: python -m pytest -v -m ci