Skip to content

Commit

Permalink
update github workflows (#4)
Browse files Browse the repository at this point in the history
* update github workflows

- .github 디렉토리로 workflows 디렉토리를 옮겼습니다.
- github action ci에서 cpplint 명령어를 수정했습니다.

* update gitignore
  • Loading branch information
harderthan authored Oct 5, 2023
1 parent 0ce3dc9 commit 992f4c9
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion workflows/cpplint.yml → .github/workflows/cpplint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ jobs:
- uses: actions/checkout@v1
- uses: actions/setup-python@v1
- run: pip install cpplint
- run: cpplint --recursive .
- run: cpplint --quiet --recursive .
File renamed without changes.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.vscode
3 changes: 1 addition & 2 deletions CPPLINT.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
set noparent
linelength=80
exclude_files=.git,venv,cmake-build-debug
exclude_files=./third_party
exclude_files=.git,venv,cmake-build-debug,
filter=-legal/copyright, -readability/todo, -runtime/references
1 change: 1 addition & 0 deletions third_party/CPPLINT.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
exclude_files=.\/*

0 comments on commit 992f4c9

Please sign in to comment.