Skip to content

fix: use wall_time_seconds (not wall_time_s) in mf promote command #50

fix: use wall_time_seconds (not wall_time_s) in mf promote command

fix: use wall_time_seconds (not wall_time_s) in mf promote command #50

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
- run: uv sync --group dev
- run: uv run ruff check src/ tests/
- run: uv run ruff format --check src/ tests/
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python-version }}
- run: uv sync --extra dev
- run: uv run pytest tests/unit/ -v --tb=short
test-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
- run: uv sync --extra dev --extra mlx
- run: uv run pytest tests/unit/ -v --tb=short