move 404 handler public, remove 404 info, add examples for overrides #297
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: cpplint | |
on: | |
push: | |
paths-ignore: | |
- '.github/workflows/compile_*.yml' | |
pull_request: | |
paths-ignore: | |
- '.github/workflows/compile_*.yml' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: cpplint | |
uses: reviewdog/action-cpplint@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
reporter: github-pr-check | |
flags: --linelength=100 | |
target: . | |
filter: "-whitespace/tab\ | |
,-readability/braces\ | |
,-whitespace/braces\ | |
,-whitespace/comments\ | |
,-whitespace/indent\ | |
,-whitespace/newline\ | |
,-whitespace/operators\ | |
,-whitespace/parens\ | |
" |