mirror of
https://hub.njuu.cf/TheAlgorithms/C-Plus-Plus.git
synced 2023-10-11 13:05:55 +08:00
addendum cpplint bugfix 22b375c058
This commit is contained in:
parent
bc8fda9056
commit
10bfe13995
3
.github/workflows/cpplint_modified_files.yml
vendored
3
.github/workflows/cpplint_modified_files.yml
vendored
@ -37,7 +37,8 @@ jobs:
|
|||||||
sys.exit(0)
|
sys.exit(0)
|
||||||
|
|
||||||
print("cpplint:")
|
print("cpplint:")
|
||||||
subprocess.run(["cpplint", "--filter=-legal/copyright"] + cpp_files, check=True, text=True)
|
for cpp_file in cpp_files:
|
||||||
|
subprocess.run(["cpplint", "--filter=-legal/copyright"] + cpp_file, check=True, text=True)
|
||||||
|
|
||||||
print("g++:")
|
print("g++:")
|
||||||
# compile_exts = tuple(".c .c++ .cc .cpp .cu .cxx".split())
|
# compile_exts = tuple(".c .c++ .cc .cpp .cu .cxx".split())
|
||||||
|
Loading…
Reference in New Issue
Block a user