Skip to content

Adhesion

Adhesion #141

name: clang-format Check
on:
push:
paths:
- '.github/workflows/clang-format-check.yml'
- '.clang-format'
- 'src/**'
- 'tests/src/**'
- 'python/src/**'
pull_request:
paths:
- '.github/workflows/clang-format-check.yml'
- '.clang-format'
- 'src/**'
- 'tests/src/**'
- 'python/src/**'
jobs:
formatting-check:
name: Formatting Check
runs-on: ubuntu-latest
strategy:
matrix:
path:
- 'src'
- 'tests/src'
- 'python/src'
steps:
- uses: actions/checkout@v4
- name: clang-format style check
uses: jidicula/[email protected]
with:
clang-format-version: '18'
check-path: ${{ matrix.path }}