Skip to content

commit

commit #1

Workflow file for this run

name: clang-format Check
on: [push, pull_request] # controls when the action will run
jobs:
formatting-check:
name: Formatting Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run clang-format style check for C/C++ programs
uses: jidicula/clang-format-action@v4.11.0 # https://github.com/jidicula/clang-format-action
with:
clang-format-version: '16'
check-path: '.'
exclude-regex: 'AutonomyLib\/include\/common\/common_utils\/json\.hpp'