Skip to content

CPM json and other minor changes #16

CPM json and other minor changes

CPM json and other minor changes #16

name: auto-clang-format
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
formatting-check:
name: Formatting Check
runs-on: ubuntu-latest
strategy:
matrix:
path:
- check: "**"
exclude: "psim/include/psim/json.h"
steps:
- uses: actions/checkout@v3
- name: Run clang-format style check
uses: jidicula/[email protected]
with:
clang-format-version: "15"
check-path: ${{ matrix.path['check'] }}
exclude-regex: ${{ matrix.path['exclude'] }}
fallback-style: "Google"