Skip to content

fix: stop double-counting partial offload in ranking #190

fix: stop double-counting partial offload in ranking

fix: stop double-counting partial offload in ranking #190

Workflow file for this run

name: Lint
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.13"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff
- name: Run Ruff linter
run: ruff check .
- name: Run Ruff formatter check
run: ruff format --check .