Skip to content

feat(debugger): use hpp #1

feat(debugger): use hpp

feat(debugger): use hpp #1

Workflow file for this run

name: C++ (clang-format)
on:
push:
paths:
- "**/*.cpp"
- "**/*.h"
pull_request:
paths:
- "**/*.cpp"
- "**/*.h"
jobs:
format:
runs-on: ubuntu-latest
steps:
- name: Checkout branch
uses: actions/checkout@v4
- name: Install clang-format 18
uses: aminya/setup-cpp@v1
with:
clangformat: 18.1.6
- name: Run clang-format
run: clang-format **/*.cpp **/*.h -n --Werror