From 24fe3b0f66529559ac4bfb96dc6c525ea26fe6c8 Mon Sep 17 00:00:00 2001 From: Varun Date: Thu, 22 Oct 2020 17:54:46 +0530 Subject: [PATCH] Updated Test File. --- test/shell-test.sh | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/test/shell-test.sh b/test/shell-test.sh index 75b18de..84ac49d 100644 --- a/test/shell-test.sh +++ b/test/shell-test.sh @@ -15,11 +15,26 @@ gh_log_group_start "Group Name" gh_log "Log Line 1" gh_log "Log Line 2" gh_log "Log Line 3" -gh_log_group_start "Group Name2" -gh_log "Log Line 2" -gh_log "Log Line 3" gh_log_group_end + +gh_log_group_start "Colored Log" +gh_log "$(log_green "This Log Will Be In log_green")" +gh_log "$(log_red "This Log Will Be In log_red")" +gh_log "$(log_blue "This Log Will Be In log_blue")" +gh_log "$(log_purple "This Log Will Be In log_purple")" +gh_log "$(log_yellow "This Log Will Be In log_yellow")" +gh_log "$(log_cyan "This Log Will Be In log_cyan")" gh_log_group_end + +gh_log_group_start "Single Word Colored Log" +gh_log "This Log Will Have Only A Text In Color $(log_green "log_green")" +gh_log "This Log Will Have Only A Text In Color $(log_red "log_red")" +gh_log "This Log Will Have Only A Text In Color $(log_blue "log_blue")" +gh_log "This Log Will Have Only A Text In Color $(log_purple "log_purple")" +gh_log "This Log Will Have Only A Text In Color $(log_yellow "log_yellow")" +gh_log "This Log Will Have Only A Text In Color $(log_cyan "log_cyan")" +gh_log_group_end + gh_log # {STRING} To be masked in Github Action's Log