GitHub Action to run cpplint on all pull requests

This commit is contained in:
Christian Clauss
2019-11-26 18:59:21 +01:00
committed by GitHub
parent 6d3a851766
commit 8abb4aa1f9

10
.github/workflows/ccpp.yml vendored Normal file
View File

@@ -0,0 +1,10 @@
name: cpplint
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-python@v1
- run: pip install cpplint
- run: cpplint --recursive .