You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/awesome_workflow.yml
+5-4
Original file line number
Diff line number
Diff line change
@@ -136,12 +136,13 @@ jobs:
136
136
print(f"{len(space_files)} files contain space or dash characters:")
137
137
print("\n".join(space_files) + "\n")
138
138
139
-
nodir_files = [file for file in cpp_files if file.count(os.sep) != 1 and "project_euler" not in file and "leetcode" not in file and "data_structure" not in file]
140
-
if nodir_files:
139
+
nodir_files = [file for file in cpp_files if file.count(os.sep) != 1 and "project_euler" not in file and "data_structure" not in file]
140
+
nodir_file_bad_files = len(nodir_files) - 1
141
+
if nodir_file_bad_files:
141
142
print(f"{len(nodir_files)} files are not in one and only one directory:")
0 commit comments