Skip to content

Add MLX inference support #3

Add MLX inference support

Add MLX inference support #3

Workflow file for this run

name: MLX Tests
on: [push, pull_request]
jobs:
test:
strategy:
max-parallel: 4
fail-fast: false
matrix:
python-version: ['3.11']
platform: [macos-14]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install ".[mlx,test]"
- name: Test with pytest
run: pytest test/*_mlx.py