Skip to content

Rewrite README with corrected benchmarks, diagram, and citations #1

Rewrite README with corrected benchmarks, diagram, and citations

Rewrite README with corrected benchmarks, diagram, and citations #1

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.11", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install package
run: pip install -e ".[dev]"
- name: Run tests
run: pytest tests/ -v
- name: Smoke-test the CLI
run: |
lab-knapsack single f1 --runs 3 --seed 0
lab-knapsack multiple "Multiple Knapsack Problem/Dataset/weish01.dat" --runs 3 --seed 0