Skip to content

Methods for manipulating point clouds #112

Methods for manipulating point clouds

Methods for manipulating point clouds #112

Workflow file for this run

name: Lint
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install Ruff
run: |
python -m pip install --upgrade pip
pip install ruff
- name: Lint with Ruff
run: |
# Stop the build if there are Python syntax errors or undefined names
# Explicitly exclude notebooks to ensure CI passes even if config is misbehaving
ruff check --output-format=github --exclude "**/*.ipynb" .