Skip to content

update images

update images #52

Workflow file for this run

name: Pytest
on:
push:
branches:
- '**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
architecture: "x64"
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Upgrade pip and build dependencies
run: |
python -m pip install --upgrade pip setuptools wheel pytest
- name: Install room-env from current branch
run: |
python -m pip install git+https://github.com/humemai/room-env@${{ github.ref_name }}
- name: Run pytest
run: |
python -m pytest .