Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions utils/verify-action-build.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,9 @@
from rich.table import Table
from rich.text import Text

console = Console(stderr=True)
output = Console()
_force_color = os.environ.get("CI") is not None
console = Console(stderr=True, force_terminal=_force_color)
output = Console(force_terminal=_force_color)

# Path to the actions.yml file relative to the script
ACTIONS_YML = Path(__file__).resolve().parent.parent / "actions.yml"
Expand Down
Loading