#1741 Rolling camera and then interacting with the view provide incorrect interactions #6167
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: 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 |