File tree Expand file tree Collapse file tree 1 file changed +39
-0
lines changed
Expand file tree Collapse file tree 1 file changed +39
-0
lines changed Original file line number Diff line number Diff line change 1+ name : tests
2+
3+ on :
4+ push :
5+ pull_request :
6+
7+ permissions :
8+ contents : read
9+
10+ jobs :
11+ test :
12+ runs-on : ubuntu-latest
13+ strategy :
14+ fail-fast : false
15+ matrix :
16+ python-version : ['3.10', '3.11']
17+
18+ steps :
19+ - name : Checkout
20+ uses : actions/checkout@v4
21+
22+ - name : Set up Python ${{ matrix.python-version }}
23+ uses : actions/setup-python@v5
24+ with :
25+ python-version : ${{ matrix.python-version }}
26+ cache : ' pip'
27+
28+ - name : Install test/deps
29+ run : |
30+ python -m pip install --upgrade pip
31+ pip install pytest pyyaml
32+
33+ - name : Run unit tests
34+ run : |
35+ pytest -q
36+
37+ - name : Quickstart smoke (scene → nudge → plan → safety)
38+ run : |
39+ python examples/quickstart.py --scene sim/scenes/basic_room.json --verbose
You can’t perform that action at this time.
0 commit comments