We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5d1f56 commit 2a424f8Copy full SHA for 2a424f8
.github/workflows/mac_test.yml
@@ -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
28
+ pip install uv
29
+ uv pip install .
30
31
+ - name: Step 4: Run Demo
32
33
+ cd mousearm/Demo
34
+ python Demo.py
0 commit comments