32 lines
715 B
YAML
32 lines
715 B
YAML
|
name: Validate C++
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- main
|
||
|
paths:
|
||
|
- '.github/workflows/validate-cpp.yml'
|
||
|
- 'cpp/**'
|
||
|
pull_request:
|
||
|
paths:
|
||
|
- '.github/workflows/validate-cpp.yml'
|
||
|
- 'cpp/**'
|
||
|
|
||
|
jobs:
|
||
|
lint:
|
||
|
name: cpplint
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- uses: reviewdog/action-cpplint@master
|
||
|
with:
|
||
|
github_token: ${{ secrets.github_token }}
|
||
|
reporter: github-pr-review
|
||
|
flags: --linelength=230
|
||
|
targets: --recursive cpp android/src/main/cpp
|
||
|
filter: "-legal/copyright\
|
||
|
,-readability/todo\
|
||
|
,-build/namespaces\
|
||
|
,-whitespace/comments\
|
||
|
"
|