Rewrite README with corrected benchmarks, diagram, and citations #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |