mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-10 03:47:03 +02:00
0c90fb420b
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
10 lines
224 B
Bash
Executable File
10 lines
224 B
Bash
Executable File
#!/usr/bin/env 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
|