1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-11-06 09:09:29 +02:00

fix: improve output on github actions (#3221)

* fix: improve output on github actions

Signed-off-by: Carlos A Becker <caarlos0@users.noreply.github.com>

* fix: log

Signed-off-by: Carlos A Becker <caarlos0@users.noreply.github.com>

* test: force ascii

Signed-off-by: Carlos A Becker <caarlos0@users.noreply.github.com>
This commit is contained in:
Carlos Alexandro Becker
2022-07-04 16:12:24 -03:00
committed by GitHub
parent c431afb985
commit f24f1a0a70
6 changed files with 17 additions and 20 deletions

View File

@@ -1,2 +1,2 @@
• foo foo=bar
• bar foo=bar
• foo foo=bar
• bar foo=bar

View File

@@ -1,2 +1,2 @@
• foo foo=bar
• bar foo=bar
• foo foo=bar
• bar foo=bar

View File

@@ -7,11 +7,15 @@ import (
"testing"
"github.com/caarlos0/log"
"github.com/charmbracelet/lipgloss"
"github.com/goreleaser/goreleaser/internal/golden"
"github.com/muesli/termenv"
"github.com/stretchr/testify/require"
)
func TestWriter(t *testing.T) {
lipgloss.SetColorProfile(termenv.Ascii)
t.Run("info", func(t *testing.T) {
for _, out := range []Output{Info, Error} {
t.Run(strconv.Itoa(int(out)), func(t *testing.T) {