Skip to content

Commit

Permalink
ENH: Add Clang Format Linter to Github Actions
Browse files Browse the repository at this point in the history
Enforces ITK coding style, in keeping with ITKModuleTemplate.
  • Loading branch information
sudomakeinstall committed May 25, 2020
1 parent 28f17ad commit 348276e
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/clang-format-linter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: clang-format linter

on: [push,pull_request]

jobs:
lint:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
with:
fetch-depth: 1
- uses: InsightSoftwareConsortium/ITKClangFormatLinterAction@master

0 comments on commit 348276e

Please sign in to comment.