1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2024-12-31 01:53:50 +02:00
goreleaser/scripts/test.sh
Carlos Alexandro Becker d58a3e72c3
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>
2022-06-24 09:33:34 -03:00

10 lines
217 B
Bash
Executable File

#!/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