feat(transports): add mx_refit ModelExpress weight-broadcast transport #13305
Workflow file for this run
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: Style | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - refactor | |
| pull_request: | |
| # This will trigger the workflow for pull requests to any branch | |
| types: [opened, synchronize, reopened] | |
| jobs: | |
| ruff: | |
| name: Ruff | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v7 | |
| # Submodules are excluded from ruff via pyproject.toml; no need to fetch them. | |
| with: | |
| submodules: false | |
| - name: Run ruff | |
| uses: astral-sh/ruff-action@v4.1.0 | |
| with: | |
| version: "0.15.14" | |
| args: "check --config=pyproject.toml" | |
| - name: Run ruff format (check) | |
| uses: astral-sh/ruff-action@v4.1.0 | |
| with: | |
| version: "0.15.14" | |
| args: "format --check --config=pyproject.toml" |