Skip to content

Commit 2191433

Browse files
committed
Add workflow to run the tests on arm64 macos
1 parent b38a654 commit 2191433

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/macos_test.yaml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: macos-pytest
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
runs-on: macos-latest
8+
strategy:
9+
matrix:
10+
python-version: ["3.12"]
11+
12+
steps:
13+
- uses: actions/checkout@v4
14+
- name: Set up Python ${{ matrix.python-version }}
15+
uses: actions/setup-python@v5
16+
with:
17+
python-version: ${{ matrix.python-version }}
18+
- name: Install dependencies
19+
run: |
20+
python -m pip install --upgrade pip
21+
pip install -e .
22+
pip install -r test_requirements.txt
23+
- name: Test with pytest
24+
run: |
25+
pytest

0 commit comments

Comments
 (0)