Skip to content

Commit 7e55ed5

Browse files
committed
ENH: Include clang format linter from ITKModuleTemplate
This GitHub Action will test if changes made are of the correct clang format. If it fails, the required changes will be printed to the screen. If it passes, then no additional changes need to be made.
1 parent 7381c29 commit 7e55ed5

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: clang-format linter
2+
3+
on: [push,pull_request]
4+
5+
jobs:
6+
lint:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@v1
11+
with:
12+
fetch-depth: 1
13+
- uses: InsightSoftwareConsortium/ITKClangFormatLinterAction@master

0 commit comments

Comments
 (0)