Order scripts by execution duration in GHA summary (#293)

This commit is contained in:
Marc Wrobel
2024-02-04 15:02:08 +01:00
committed by GitHub
parent 56cc29b49d
commit 0e0e227875
2 changed files with 27 additions and 19 deletions

View File

@@ -32,8 +32,8 @@ class GitHubStepSummary:
def __init__(self) -> None:
self.value = ""
def __enter__(self) -> None:
return None
def __enter__(self) -> "GitHubStepSummary":
return self
def println(self, value: str) -> None:
self.value += value + "\n"