From feb8cb9bb3aed98bb1fbffcb6dfb168c80b4181f Mon Sep 17 00:00:00 2001
From: Pavel Vetokhin
Date: Sun, 17 Sep 2023 10:16:04 +0300
Subject: [PATCH] Test fail on empty 5
---
.github/workflows/solution-sanity.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/solution-sanity.yml b/.github/workflows/solution-sanity.yml
index c9aae561..5808bed5 100644
--- a/.github/workflows/solution-sanity.yml
+++ b/.github/workflows/solution-sanity.yml
@@ -41,7 +41,7 @@ jobs:
GITHUB_ACTOR: ${{ github.actor }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: mikepenz/action-junit-report@v4
- if: ${{ steps.binaries.outcome == 'success' || steps.binaries.outcome == 'failure' }}
+ if: ${{ !cancelled() && (steps.binaries.outcome == 'success' || steps.binaries.outcome == 'failure') }}
with:
check_name: Unit Test Report
report_paths: "**/target/surefire-reports/TEST-*.xml"