Skip to content

Fix building examples #344

Fix building examples

Fix building examples #344

Workflow file for this run

name: clang-format Check
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
permissions:
contents: read
jobs:
formatting-check:
name: Formatting Check
runs-on: ubuntu-latest
strategy:
matrix:
path:
- "benchmark"
- "examples"
- "include/CXXGraph"
- "test"
steps:
- uses: actions/checkout@v5
- name: Run clang-format style check
uses: jidicula/[email protected]
with:
clang-format-version: "19"
check-path: ${{ matrix.path }}