Skip to content

move old Gymnasium/MuJoCo mujoco-py environments here, and use mujoco-py-cython3 #976

move old Gymnasium/MuJoCo mujoco-py environments here, and use mujoco-py-cython3

move old Gymnasium/MuJoCo mujoco-py environments here, and use mujoco-py-cython3 #976

Workflow file for this run

name: build
on: [pull_request, push]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v2
- run: |
docker build -f .github/docker/py.Dockerfile \
--build-arg PYTHON_VERSION=${{ matrix.python-version }} \
--tag gymnasium-robotics-docker .
- name: Run tests
run: docker run gymnasium-robotics-docker pytest