Skip to content

Bump pillow from 12.1.0 to 12.1.1 #277

Bump pillow from 12.1.0 to 12.1.1

Bump pillow from 12.1.0 to 12.1.1 #277

Workflow file for this run

name: build
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install uv
uv pip install --system -e ".[test]"
- name: Trigger git clone
run: |
python -c "from mujoco_playground._src import mjx_env; mjx_env.ensure_menagerie_exists()"
- name: Test with pytest
run: |
pytest -n auto mujoco_playground/_src/