Release
successSet up job
successCheckout <1s
successSet up Go 5s
go env
successgo test 16s
go test ./... -count=1
successBuild the release 21s
bash ./02-build-releases.sh "${GITHUB_REF_NAME}"successRelease notes <1s
set -euo pipefail
message="$(git for-each-ref "refs/tags/${GITHUB_REF_NAME}" --format='%(contents)' | sed '/^-----BEGIN PGP SIGNATURE-----/,$d')"
if [ -z "$(printf '%s' "${message}" | tr -d '[:space:]')" ]; then
message="Turbo Rust ${GITHUB_REF_NAME}"
fi
tree="${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}/blob/${GITHUB_REF_NAME}"
version="${GITHUB_REF_NAME#v}"
{
printf '%s\n\n' "${message}"
echo "Download the binary for your platform below, or install from the module proxy:"
echo
echo '```bash'
echo "go install $(go list -m)@${GITHUB_REF_NAME}"
echo '```'
echo
echo "Documentation: [English](${tree}/docs/en/README.md) · [Français](${tree}/docs/fr/README.md) · [how to install](${tree}/docs/en/how-to/install.md)"
echo
echo "- Commit: \`${GITHUB_SHA}\`"
echo "- Published by the Release workflow, run #${GITHUB_RUN_NUMBER}, with $(go env GOVERSION)"
echo
echo '## Running a download'
echo
echo '```bash'
echo "chmod +x turbo-rust-${version}-<platform>"
echo "./turbo-rust-${version}-<platform> src/main.rs"
echo '```'
echo
echo "On macOS, an unsigned download is quarantined until you say otherwise: \`xattr -d com.apple.quarantine turbo-rust-${version}-darwin-arm64\`."
echo
echo '## Checksums'
echo
echo 'Verify a download with `sha256sum -c SHA256SUMS --ignore-missing` (`shasum -a 256 -c` on macOS).'
echo
echo '```'
cat "release/${GITHUB_REF_NAME}/SHA256SUMS"
echo '```'
} > "${RUNNER_TEMP}/notes.md"
echo "path=${RUNNER_TEMP}/notes.md" >> "$GITHUB_OUTPUT"
successKeep the binaries as a run artifact 4s
successPublish the release 3s
Post Set up Go
No test reports for this run.
Tell a job where its test runner writes its report and this tab fills in: how many tests passed, failed and were skipped, a bar of the result at a glance, then every failure first — with the assertion that failed and the output around it — over a per-suite list of cases and their durations. No scrolling a log for the word FAIL.
It is one reports: key on the job — a job key, not a step, so the report is collected whatever the job concluded. JUnit XML and go test -json are both understood, and most runners already emit one of them. reports: is a rickub extension and works only in .rickub/workflows/; in .github/workflows/ it is a parse error on purpose, because those files are also meant to run on github.com.