correct metadata key to replay behavior-100 vr demos #53
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
name: Tests | |
on: [pull_request, push] | |
jobs: | |
test: | |
runs-on: [linux, gpu, dataset-enabled] | |
if: github.repository == 'StanfordVL/iGibson-dev' | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- name: Add CUDA to env | |
run: echo "/usr/local/cuda/bin" >> $GITHUB_PATH | |
- name: Setup python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.8" | |
architecture: x64 | |
- name: Install dev requirements | |
run: pip install -r requirements-dev.txt | |
- name: Install | |
run: pip install -e . | |
- name: Link Dataset | |
run: ln -s /scr/ig-data igibson/data | |
- name: Run tests | |
run: pytest | |
- name: Upload coverage to Codecov | |
uses: codecov/[email protected] | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} |