Skip to content

Commit e5d9449

Browse files
committed
flush
1 parent dd10c2f commit e5d9449

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/scripts/ci_config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,12 @@ def github_notice(msg: str):
4747

4848
def github_group_start(name: str):
4949
"""Start a GitHub Actions log group."""
50-
print(f"::group::{name}")
50+
print(f"::group::{name}", flush=True)
5151

5252

5353
def github_group_end():
5454
"""End a GitHub Actions log group."""
55-
print("::endgroup::")
55+
print("::endgroup::", flush=True)
5656

5757

5858
def verify_groups(args):

0 commit comments

Comments
 (0)