From e93d9c0b2969b8a22865390adaf9cb120329425a Mon Sep 17 00:00:00 2001 From: brandon s allbery kf8nh Date: Fri, 3 Oct 2025 16:15:26 -0400 Subject: [PATCH] indicate which of the joined tests failed So people don't have to open all of the collapsed test output to find any failures. --- .github/workflows/validate.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index b63219595ca..04d848ef0b3 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -241,6 +241,9 @@ jobs: sh validate.sh $FLAGS -s "$test" || rc=1 echo End "$test" echo ::endgroup:: + if [ $rc -eq 1 ]; then + echo Some tests failed + fi done exit $rc # The above ensures all the tests get run, for a single platform+ghc.