Skip to content

Fix unwind exception (#1457) #2

Fix unwind exception (#1457)

Fix unwind exception (#1457) #2

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/clang-format-lint-action@v0.16.1
with:
source: 'library application python plugins'
extensions: 'h,cxx'
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/actions-codespell@v1.0
with:
check_filenames: true
check_hidden: true