Skip to content

Commit

Permalink
ci: add cpplint
Browse files Browse the repository at this point in the history
  • Loading branch information
marenz2569 committed Jun 6, 2024
1 parent 45dfa2b commit 9ef30aa
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/cpplint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# GitHub Action to run cpplint recursively on all pushes and pull requests
# https://github.com/cpplint/GitHub-Action-for-cpplint

name: cpplint
on: [push, pull_request]
jobs:
cpplint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.x
- run: pip install cpplint
- run: cpplint --recursive .

0 comments on commit 9ef30aa

Please sign in to comment.