-
Notifications
You must be signed in to change notification settings - Fork 35
41 lines (33 loc) · 870 Bytes
/
tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: Test PRs
on:
pull_request:
branches:
- main
jobs:
test:
runs-on: macos-14
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install MLX
run: |
pip install mlx>=0.15
- name: Install pre-commit
run: |
python -m pip install pre-commit
pre-commit run --all
if ! git diff --quiet; then
echo 'Style checks failed, please install pre-commit and run pre-commit run --all and push the change'
exit 1
fi
- name: Install package and dependencies
run: |
python -m pip install pytest
python -m pip install -e .
- name: Run tests
run: |
pytest -s .