Skip to content

Commit

Permalink
{ci} Add formatting check
Browse files Browse the repository at this point in the history
  • Loading branch information
asmaloney committed Dec 24, 2023
1 parent 9c309a8 commit e2d6328
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/format-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: C++ Code Format

on:
push:
pull_request:
branches:
- master

jobs:
formatting-check:
name: Formatting Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run clang-format style check
uses: jidicula/[email protected]
with:
clang-format-version: '17'
exclude-regex: 'extern'

0 comments on commit e2d6328

Please sign in to comment.