Skip to content

Commit c0dbfa3

Browse files
fix bug
1 parent c08a631 commit c0dbfa3

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/mac_test.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,15 @@ jobs:
1717
with:
1818
activate-environment: mousearm-test
1919
python-version: "3.11"
20-
architecture: x64
20+
architecture: x64
21+
channels: opensim-org,conda-forge,defaults
22+
channel-priority: true
2123

2224
- name: Step 2: Install opensim
2325
run: |
24-
conda install -c opensim-org opensim -y
26+
conda install opensim -y
27+
# Verify installation immediately
28+
python -c "import opensim; print(opensim.__version__)"
2529
2630
- name: Step 3: Install library with uv
2731
run: |
@@ -30,5 +34,5 @@ jobs:
3034
3135
- name: Step 4: Run Demo
3236
run: |
33-
cd mousearm/mousearm/Demo
37+
cd $(find . -type d -name "Demo" | head -n 1)
3438
python Demo.py

0 commit comments

Comments
 (0)