Skip to content

Commit

Permalink
Use group outputs for errors
Browse files Browse the repository at this point in the history
  • Loading branch information
CPKreu authored Sep 18, 2024
1 parent bedc00e commit 38c6641
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion utility/check.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ def main():
if valid:
print(f"✅ {filename} is valid")
else:
print(f"❌ {filename} is invalid: {error}")
print(f"::group::❌ {filename} is invalid")
print(error)
print("::endgroup::")
validation_failed = True

if validation_failed:
Expand Down

0 comments on commit 38c6641

Please sign in to comment.