Skip to content

Adds support to create Octree from PointCloud data #86

Adds support to create Octree from PointCloud data

Adds support to create Octree from PointCloud data #86

Workflow file for this run

name: Build Pull Requests
on: [pull_request]
jobs:
formatting:
name: Check Formatting
runs-on: ubuntu-latest
steps:
- name: Check out source repository
uses: actions/checkout@v3
- name: Set up Python environment
uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: ruff
run: |
pip install ruff
ruff .
build_wheels:
name: Build wheel on ${{matrix.platform}}
runs-on: ${{matrix.platform}}
strategy:
fail-fast: false
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest, macos-14]
steps:
- uses: actions/checkout@v3
- name: Build wheels
uses: pypa/[email protected]
- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl