Working value map generation and visualization, full configurability via Hydra now supported #44
Workflow file for this run
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
# 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 |