mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-08 03:31:59 +02:00
10 lines
217 B
Bash
10 lines
217 B
Bash
|
#!/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
|