Skip to content

Commit

Permalink
Update clang-format action container
Browse files Browse the repository at this point in the history
  • Loading branch information
markkohdev committed Mar 29, 2024
1 parent 406b4e0 commit 83815ba
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/all.yml
Original file line number Diff line number Diff line change
@@ -37,7 +37,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Check C++ Formatting
uses: jidicula/clang-format-action@v4.4.1
uses: jidicula/clang-format-action@v4.11.0
with:
clang-format-version: 16

2 changes: 1 addition & 1 deletion cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@ add_subdirectory(src)
add_subdirectory(test)

# Define the command
set(FIND_COMMAND find .. -type d -path ./include -prune -o -type d -path ../python/.tox -prune -o -type f -name \"*.cpp\" -o -name \"*.h\" -print)
set(FIND_COMMAND find .. -type d -path ./include -prune -o -type d -path ../python/.tox -prune -o -type f -name "*.cpp" -o -name "*.h" -print)
set(CHECK_FORMAT_COMMAND clang-format --dry-run -i)
set(FORMAT_COMMAND clang-format --verbose -i)

0 comments on commit 83815ba

Please sign in to comment.