From 7834b0cc3746d85f5525f916478ef4585296c511 Mon Sep 17 00:00:00 2001 From: Maximov Valery Date: Mon, 29 Dec 2025 07:20:10 +0300 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D0=BE=20=D1=81=D0=BE=D1=85=D1=80=D0=B0=D0=BD=D0=B5=D0=BD?= =?UTF-8?q?=D0=B8=D1=8F=20=D0=BE=D1=82=D1=87=D0=B5=D1=82=20=D0=BE=20=D1=82?= =?UTF-8?q?=D0=B5=D1=81=D1=82=D0=B8=D1=80=D0=BE=D0=B2=D0=B0=D0=BD=D0=B8?= =?UTF-8?q?=D0=B8=20=D0=BF=D1=80=D0=B8=20=D0=BE=D1=88=D0=B8=D0=B1=D0=BA?= =?UTF-8?q?=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/gradle.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index 351fb626788..de7044f8368 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -53,6 +53,12 @@ jobs: with: name: Test Results (Java ${{ matrix.java_version }}.${{ matrix.os }}) path: "**/test-results/test/**/*.xml" + - name: Publish Test report + if: failure() + uses: actions/upload-artifact@v5 + with: + name: junit_report_${{ matrix.os }}_${{ matrix.java_version }} + path: build/reports/tests/test publish-test-results: needs: [gatekeeper, check-pr-exists, build] runs-on: ubuntu-latest @@ -71,3 +77,4 @@ jobs: uses: EnricoMi/publish-unit-test-result-action@v2 with: junit_files: "artifacts/**/*.xml" +