Skip to content

Commit 70e8872

Browse files
committed
Re-enable CI.
1 parent 1cd81f3 commit 70e8872

File tree

1 file changed

+6
-9
lines changed

1 file changed

+6
-9
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@ name: build
22

33
on:
44
push:
5-
branches: [main]
5+
branches: [main, "ci-enable"]
66
pull_request:
7-
branches: [main]
7+
branches: [main, "ci-enable"]
88

99
jobs:
1010
build:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: ["3.11"]
14+
python-version: ["3.10", "3.11", "3.12"]
1515

1616
steps:
1717
- uses: actions/checkout@v2
@@ -24,9 +24,6 @@ jobs:
2424
python -m pip install --upgrade pip
2525
pip install uv
2626
uv pip install --system -e ".[test]"
27-
# - name: Install submodules
28-
# run: |
29-
# git submodule update --init --recursive
30-
# - name: Test with pytest
31-
# run: |
32-
# pytest mujoco_playground
27+
- name: Test with pytest
28+
run: |
29+
pytest mujoco_playground

0 commit comments

Comments
 (0)