Skip to content

Bunch of stuff is still broken, but AV2 Demo 3D works for RGB + Lidar #76

Bunch of stuff is still broken, but AV2 Demo 3D works for RGB + Lidar

Bunch of stuff is still broken, but AV2 Demo 3D works for RGB + Lidar #76

name: Python Package Install
on: [push]
jobs:
install:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Install OpenGL
run: sudo apt-get update && sudo apt-get install -y freeglut3-dev # This is required for Open3D to not blow up on startup
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
- name: Run Tests
run: |
./tests/integration_tests.sh