経緯度データ表示機能に拡大率と開始年・終了年を指定する機能を追加 #104
Workflow file for this run
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: ReviewdogCpplint | |
on: [pull_request] | |
jobs: | |
cpplint: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: cpplint | |
uses: reviewdog/action-cpplint@b6c13159b10435813edfddea9e1cd02157544f45 | |
with: | |
github_token: ${{ secrets.github_token }} | |
reporter: github-pr-review | |
flags: --linelength=150 | |
filter: "build/include_alpha\ | |
,build/include_what_you_use\ | |
,build/storage_class\ | |
,readability/braces\ | |
,readability/casting\ | |
,readability/fn_size\ | |
,whitespace/braces\ | |
,whitespace/comma\ | |
,whitespace/comments\ | |
,whitespace/end_of_line\ | |
,whitespace/ending_newline\ | |
,whitespace/indent\ | |
,whitespace/newline\ | |
,whitespace/operators\ | |
,whitespace/parens\ | |
,whitespace/line_length\ | |
" |