From 34ef2958d978e67f3052e952fe659f042a16875b Mon Sep 17 00:00:00 2001 From: aya Date: Tue, 17 Jun 2025 19:42:21 +0300 Subject: [PATCH] Increase limit to 10 and make job fail on failing tests --- .github/workflows/CI.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 7897000..a9e8b91 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -39,7 +39,8 @@ jobs: - name: Run Daily Test run: | - go test -count=5 -p=1 -v -timeout=360m ./waku \ + set -euo pipefail + go test -count=10 -p=1 -v -timeout=360m ./waku \ | tee testlogs.log - name: Upload Test Logs