Skip to content

Move habitat dependencies #23

Move habitat dependencies

Move habitat dependencies #23

Workflow file for this run

# Copyright [2023] Boston Dynamics AI Institute, Inc.
name: ZSOS - Main Build
on:
push:
branches: [ main ]
pull_request:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ['3.9.16']
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install package
run: |
sudo apt-get install -y libgl1-mesa-dev
pip install -e .[habitat]
pip install -e .[dev]
- name: Pytest
run: |
pytest test