Making Naoki's suggested changes and fixing configs #150
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: VLFM CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
vlfm_main_build: | |
runs-on: | |
group: bdai-gh-large-runners | |
defaults: | |
run: | |
shell: bash | |
container: | |
image: ghcr.io/bdaiinstitute/bdaii_vlfm:main | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Pytest | |
run: | | |
pip install -e .[habitat] | |
pytest |