From c1b2b56ff2227ad11d7d7475c2ffb0a00184e781 Mon Sep 17 00:00:00 2001 From: hhko Date: Mon, 23 Dec 2024 16:29:39 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EC=A0=9C=EB=AA=A9=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build.yml | 33 +++++++++++++++++++-------------- 1 file changed, 19 insertions(+), 14 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9c3d67a..2574ac8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -188,17 +188,30 @@ jobs: shell: bash # https://github.com/EnricoMi/publish-unit-test-result-action?tab=readme-ov-file#permissions + # # GitHub Summary - # Test Results - #  4 files   4 suites   1s ⏱️ - # 22 tests 22 ✅ 0 💤 0 ❌ - # 23 runs  23 ✅ 0 💤 0 ❌ - - name: Publish Test Results + # Test Results + #  4 files   4 suites   1s ⏱️ + # 22 tests 22 ✅ 0 💤 0 ❌ + # 23 runs  23 ✅ 0 💤 0 ❌ + - name: Publish Test Summary uses: EnricoMi/publish-unit-test-result-action@v2.18.0 if: always() with: files: | ${{ env.testresults_in_trx_files }} + check_name: "Test Summary" + + # https://github.com/dorny/test-reporter?tab=readme-ov-file + # + # + - name: Publish Test Detail Report + uses: dorny/test-reporter@v1.9.1 + if: always() + with: + name: Test Detail Report + path: "${{ env.testresults_in_trx_files }}" + reporter: dotnet-trx # # https://github.com/irongut/CodeCoverageSummary # - name: Publish Code Coverage Report @@ -230,15 +243,7 @@ jobs: # path: ${{ env.coverage_out_cobertura_file }} # retention-days: 5 - # 솔루션 테스트 상세 보고서 생성 - - name: Create test detail report - uses: dorny/test-reporter@v1.9.1 - if: always() - with: - name: Test Detail Report - #path: "tests/**/logs.trx" - path: "${{ env.testresults_in_trx_files }}" - reporter: dotnet-trx + # # dotnet-coverage 도구 설치 # - name: Install dotnet-coverage tool