From ba4a06577650a70eeac672e178906b965d6d76e7 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Mon, 24 Oct 2022 19:18:00 -0700 Subject: [PATCH] Enable colors in Cargo output --- action.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/action.yml b/action.yml index b412fe3..d292238 100644 --- a/action.yml +++ b/action.yml @@ -85,5 +85,10 @@ runs: echo CARGO_INCREMENTAL=0 >> $GITHUB_ENV shell: bash + - run: | + : enable colors in Cargo output + echo CARGO_TERM_COLOR=always >> $GITHUB_ENV + shell: bash + - run: rustc +${{steps.parse.outputs.toolchain}} --version --verbose shell: bash