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

chore(ci): improve tparse output (#3193)

* chore(ci): improve tparse output

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

* chore(ci): improve tparse output

Signed-off-by: Carlos A Becker <caarlos0@users.noreply.github.com>
This commit is contained in:
Carlos Alexandro Becker
2022-06-24 09:33:34 -03:00
committed by GitHub
parent de9949705d
commit d58a3e72c3
2 changed files with 10 additions and 6 deletions

9
scripts/test.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/bash
set -o pipefail && TEST_OPTIONS="-json" task test | tee output.json | tparse -follow
success=$?
set -e
NO_COLOR=1 tparse -format markdown -slow 10 -file output.json > $GITHUB_STEP_SUMMARY
exit $success