Transformers 5.x + Spec-dec upgrade (SpecInfer/Sequoia) + Qwen3 & Gem… #43
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: Format Check | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| format: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python 3.11 | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| - name: Install formatters | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install black==22.3.0 isort==5.10.1 | |
| # - name: Check black formatting | |
| # run: black --check src/bloombee tests benchmarks | |
| # - name: Check isort import ordering | |
| # run: isort --check-only src/bloombee tests benchmarks |