Skip to content

Minor fix in process_cartography function #2222

Minor fix in process_cartography function

Minor fix in process_cartography function #2222

Workflow file for this run

name: "CI: clang-format Check"
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
types: [opened, synchronize, reopened, ready_for_review]
jobs:
formatting-check:
name: Formatting Check
runs-on: ubuntu-latest
if: github.event_name == 'push' || github.event.pull_request.draft == false
strategy:
matrix:
path:
- 'src'
- 'test'
- 'examples'
steps:
- uses: actions/checkout@v6
- name: Run clang-format style check
uses: jidicula/clang-format-action@v4.16.0
with:
clang-format-version: '18'
check-path: ${{ matrix.path }}