Skip to content

Clean up residual and linearization #235

Clean up residual and linearization

Clean up residual and linearization #235

Workflow file for this run

# This workflow checks for compliance with the Google C++ style guide.
name: Codechecks
on: [push, pull_request]
jobs:
clang-format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: |
sudo apt install clang-format
- name: Run clang-format
run: |
cd src
find **/*.h **/*.cpp | xargs clang-format --dry-run --style=Google --Werror