The only thing I can think off is that colors_enabled is returning false, leading to the unstyled output. If so, this would suggest some kind of race, e.g. in https://github.com/console-rs/console/blob/master/src/utils.rs#L39. But before we go down that rabbit hole let's test the basic theory.
See for example https://github.com/console-rs/indicatif/actions/runs/8844253603.
The only thing I can think off is that
colors_enabled
is returningfalse
, leading to the unstyled output. If so, this would suggest some kind of race, e.g. in https://github.com/console-rs/console/blob/master/src/utils.rs#L39. But before we go down that rabbit hole let's test the basic theory.