Skip to content

Commit

Permalink
Add mlx ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Abdul Fatir Ansari committed Apr 4, 2024
1 parent 6f2d937 commit 07fd21d
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ci-mlx.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: CI

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/test_chronos_mlx.py

0 comments on commit 07fd21d

Please sign in to comment.