Skip to content

FIX: Add getters for camera parameters #1419 #4896

FIX: Add getters for camera parameters #1419

FIX: Add getters for camera parameters #1419 #4896

Workflow file for this run

name: Style Checks
on: [push, pull_request]
jobs:
formatting-check:
name: Formatting Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: C++ Formatting
uses: DoozyX/[email protected]
with:
source: 'library application python plugins examples'
extensions: 'h,cxx,in'
exclude: '**/*.py.in'
clangFormatVersion: 14 # Last Ubuntu LTS version (22.04)
- name: Python Formatting
uses: psf/black@stable
with:
options: "--check --verbose --include '(\\.py|\\.py\\.in)'"
src: "./python"
codespell-check:
name: Codespell Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: codespell-project/[email protected]
with:
check_filenames: true
check_hidden: true