-
Notifications
You must be signed in to change notification settings - Fork 407
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GH Actions: Add check that source code is formatted (by clang-format)
Issue #395 (bdwgc).
- Loading branch information
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Workflow for checking that source code is formatted by clang-format. | ||
name: clang-format check | ||
|
||
on: [ push, pull_request ] | ||
|
||
jobs: | ||
build: | ||
name: Check by clang-format | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Show clang-format version | ||
run: > | ||
clang-format --version | ||
- name: Perform checking by clang-format | ||
run: > | ||
find . -iname '*.c' -o -iname '*.cc' -o -iname '*.cpp' -o -iname '*.h' | ||
| xargs clang-format --dry-run --Werror |