Skip to content

feat(silo): format #1107

feat(silo): format

feat(silo): format #1107

Workflow file for this run

name: Formatting
on:
push:
jobs:
formatting-check:
name: Formatting Check
runs-on: ubuntu-latest
strategy:
matrix:
path:
- check: 'src'
steps:
- uses: actions/checkout@v5
- name: Run clang-format style check
uses: jidicula/clang-format-action@v4.15.0
with:
clang-format-version: '17'
check-path: ${{ matrix.path['check'] }}
exclude-regex: ${{ matrix.path['exclude'] }}