We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1cd81f3 commit 70e8872Copy full SHA for 70e8872
.github/workflows/ci.yml
@@ -2,16 +2,16 @@ name: build
2
3
on:
4
push:
5
- branches: [main]
+ branches: [main, "ci-enable"]
6
pull_request:
7
8
9
jobs:
10
build:
11
runs-on: ubuntu-latest
12
strategy:
13
matrix:
14
- python-version: ["3.11"]
+ python-version: ["3.10", "3.11", "3.12"]
15
16
steps:
17
- uses: actions/checkout@v2
@@ -24,9 +24,6 @@ jobs:
24
python -m pip install --upgrade pip
25
pip install uv
26
uv pip install --system -e ".[test]"
27
- # - name: Install submodules
28
- # run: |
29
- # git submodule update --init --recursive
30
- # - name: Test with pytest
31
32
- # pytest mujoco_playground
+ - name: Test with pytest
+ run: |
+ pytest mujoco_playground
0 commit comments