Skip to content

feat: module performance histogram #1397

feat: module performance histogram

feat: module performance histogram #1397

Workflow file for this run

name: Formatting check
on:
push:
branches: ["main"]
paths:
- "**.h"
- "**.c"
- "**.proto"
pull_request:
branches: ["main"]
paths:
- "**.h"
- "**.c"
- "**.proto"
jobs:
c-cpp-fmt:
name: C formatting
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Run clang-format
uses: ./.github/actions/clang-format
with:
include: |
*.h
*.c
exclude-regex: '^./subprojects/'
proto-fmt:
name: Protobuf formatting
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Run clang-format
uses: ./.github/actions/clang-format
with:
include: |
*.proto
exclude-regex: '^./subprojects/'