Skip to content

Introduces self stopping profiler macros. #43

Introduces self stopping profiler macros.

Introduces self stopping profiler macros. #43

Workflow file for this run

name: clang-format
on:
push:
branches: [ "dev", "feature/*" ]
pull_request:
branches: [ "dev" ]
jobs:
clang-format:
name: Check formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install clang-format
run: pip install clang-format==21.1.8
- name: Check formatting
run: |
find src -name '*.c' -o -name '*.h' \
| xargs clang-format --dry-run --Werror