Skip to content

Fix up the Model class help. (#749) #253

Fix up the Model class help. (#749)

Fix up the Model class help. (#749) #253

Workflow file for this run

name: Check formatting
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
jobs:
clang-formatter:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v2
- name: clang-format
run: |
sudo apt update
sudo apt install clang-format
for component in core dynamics physics
do
cd $component/src
clang-format --dry-run -Werror *cpp include/*hpp
cd -
done