Skip to content

Commit 2a424f8

Browse files
fix bug
1 parent e5d1f56 commit 2a424f8

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

.github/workflows/mac_test.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: Mac Demo Test
2+
on: [push, pull_request]
3+
4+
jobs:
5+
test-mac:
6+
runs-on: macos-latest
7+
defaults:
8+
run:
9+
shell: bash -l {0}
10+
11+
steps:
12+
- name: Checkout code
13+
uses: actions/checkout@v4
14+
15+
- name: Setup Conda
16+
uses: conda-incubator/setup-miniconda@v3
17+
with:
18+
activate-environment: mousearm-test
19+
python-version: "3.11"
20+
architecture: x64
21+
22+
- name: Step 2: Install opensim
23+
run: |
24+
conda install -c opensim-org opensim -y
25+
26+
- name: Step 3: Install library with uv
27+
run: |
28+
pip install uv
29+
uv pip install .
30+
31+
- name: Step 4: Run Demo
32+
run: |
33+
cd mousearm/Demo
34+
python Demo.py

0 commit comments

Comments
 (0)