From 530ac516729858747fd7cb7ef85c54a7fc0299ff Mon Sep 17 00:00:00 2001 From: Jasmin Oster Date: Wed, 24 Jan 2024 14:16:11 +0100 Subject: [PATCH] Remove the action to publish the test results Apparently, we're now affected by this issue [1] here (tl;dr: the GitHub API is kinda broken) and therefore publishing the test results is failing randomly. I've removed the step, as the workflow already ensures that the tests run. [1]: https://github.com/EnricoMi/publish-unit-test-result-action/issues/12 --- .github/workflows/test.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a47a777..e1b351e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -26,13 +26,5 @@ jobs: - name: Run tests with coverage run: dotnet test --no-restore --collect:"XPlat Code Coverage" /p:CoverletOutputFormat=opencover --logger trx --results-directory "test-results" - - name: Publish test results (${{ matrix.dotnet-version }}) - uses: EnricoMi/publish-unit-test-result-action@v2 - if: always() - with: - comment_mode: off - files: | - test-results/**/*.trx - - name: Upload coverage to Codecov uses: codecov/codecov-action@v3