From f90c87da00aebade9460918a4d3ce7010ff7e0a6 Mon Sep 17 00:00:00 2001 From: Roman Artiukhin Date: Mon, 10 Jun 2024 16:56:43 +0300 Subject: [PATCH 1/3] Update NetCoreTests.yml --- .github/workflows/NetCoreTests.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/NetCoreTests.yml b/.github/workflows/NetCoreTests.yml index 093c1e9953..b05a371943 100644 --- a/.github/workflows/NetCoreTests.yml +++ b/.github/workflows/NetCoreTests.yml @@ -76,3 +76,10 @@ jobs: - name: Build and Test run: | pwsh -noprofile -command "& ./build.ps1 -TaskList Set-Configuration,Test -properties @{'Database' = '${{matrix.DB}}';'ConnectionString'='${{matrix.CONNECTION_STRING}}'}" + + - name: Publish Test Results + uses: EnricoMi/publish-unit-test-result-action@v2 + if: always() + with: + files: | + ./*-TestResult.xml From bb1aee3e2edcad5b7a51c687212ad499f886ef81 Mon Sep 17 00:00:00 2001 From: Roman Artiukhin Date: Mon, 10 Jun 2024 17:21:41 +0300 Subject: [PATCH 2/3] Update NetCoreTests.yml --- .github/workflows/NetCoreTests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/NetCoreTests.yml b/.github/workflows/NetCoreTests.yml index b05a371943..c760112822 100644 --- a/.github/workflows/NetCoreTests.yml +++ b/.github/workflows/NetCoreTests.yml @@ -82,4 +82,4 @@ jobs: if: always() with: files: | - ./*-TestResult.xml + NHibernate.Test-TestResult.xml From 650f5fc3b186365fe6ead48cb6aa9909b461863a Mon Sep 17 00:00:00 2001 From: Roman Artiukhin Date: Mon, 10 Jun 2024 17:58:33 +0300 Subject: [PATCH 3/3] Update NetCoreTests.yml --- .github/workflows/NetCoreTests.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/NetCoreTests.yml b/.github/workflows/NetCoreTests.yml index c760112822..4debb70edc 100644 --- a/.github/workflows/NetCoreTests.yml +++ b/.github/workflows/NetCoreTests.yml @@ -77,9 +77,9 @@ jobs: run: | pwsh -noprofile -command "& ./build.ps1 -TaskList Set-Configuration,Test -properties @{'Database' = '${{matrix.DB}}';'ConnectionString'='${{matrix.CONNECTION_STRING}}'}" - - name: Publish Test Results - uses: EnricoMi/publish-unit-test-result-action@v2 - if: always() + - name: Publish Report + uses: turing85/publish-report@v2 + if: ${{ always() }} with: - files: | - NHibernate.Test-TestResult.xml + report-path: 'NHibernate.Test-TestResult.xml' +