Publish v0.1.0 #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- "gym_aloha/**" | |
- "tests/**" | |
- "examples.py" | |
- ".github/**" | |
- "poetry.lock" | |
push: | |
branches: | |
- main | |
paths: | |
- "gym_aloha/**" | |
- "tests/**" | |
- "examples.py" | |
- ".github/**" | |
- "poetry.lock" | |
jobs: | |
pytest: | |
name: Pytest | |
runs-on: ubuntu-latest | |
env: | |
DATA_DIR: tests/data | |
MUJOCO_GL: egl | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install EGL | |
run: sudo apt-get update && sudo apt-get install -y libegl1-mesa-dev | |
- name: Install poetry | |
run: | | |
pipx install poetry && poetry config virtualenvs.in-project true | |
echo "${{ github.workspace }}/.venv/bin" >> $GITHUB_PATH | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
cache: "poetry" | |
- name: Install poetry dependencies | |
run: | | |
poetry install --all-extras | |
- name: Test with pytest | |
run: | | |
pytest tests -v --cov=./gym_aloha --durations=0 |