Ready for v2.0.7 #55
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: 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 . |