Skip to content
This repository has been archived by the owner on May 16, 2024. It is now read-only.

Commit

Permalink
Add github action for cpp linting
Browse files Browse the repository at this point in the history
  • Loading branch information
TaekyungHeo committed Dec 6, 2023
1 parent c600c45 commit 263515e
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/cpp_lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Clang-format Full Tree
on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: DoozyX/clang-format-lint-action@v0.11
with:
source: '.'
extensions: 'cc,cpp,h,hh'
clangFormatVersion: 11
style: file

0 comments on commit 263515e

Please sign in to comment.