From 55a5d769587b15632bf476988710d8cf35a2e007 Mon Sep 17 00:00:00 2001 From: hustcer Date: Sun, 16 Feb 2025 13:26:35 +0800 Subject: [PATCH] chore: Disable posting test results --- .github/workflows/tests.yml | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ae14ace..9f35aaf 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -70,24 +70,3 @@ jobs: --report { type: junit, path: test-report.xml } --returns summary | to json | save --force test-summary.json ) - - - name: Publish Test Results - uses: EnricoMi/publish-unit-test-result-action@v2 - if: runner.os == 'Linux' && always() - with: - comment_mode: off - files: test-report.xml - - - name: Publish Test Results - uses: EnricoMi/publish-unit-test-result-action/macos@v2 - if: runner.os == 'macOS' && always() - with: - comment_mode: off - files: test-report.xml - - - name: Publish Test Results - uses: EnricoMi/publish-unit-test-result-action/windows@v2 - if: runner.os == 'Windows' && always() - with: - comment_mode: off - files: test-report.xml