From daee8b1ca70e4a54cee5ce3f415fde88313fd7cb Mon Sep 17 00:00:00 2001 From: Uwe Trottmann Date: Thu, 23 Nov 2023 18:00:08 +0100 Subject: [PATCH] GitHub Actions: use test reporter that does not require Docker. --- .github/workflows/assemble-test-lint.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/assemble-test-lint.yml b/.github/workflows/assemble-test-lint.yml index 6684a8cc98..2368df6b40 100644 --- a/.github/workflows/assemble-test-lint.yml +++ b/.github/workflows/assemble-test-lint.yml @@ -31,13 +31,13 @@ jobs: - name: Build and run unit tests run: ./gradlew :app:testPureDebugUnitTest - - name: Publish Unit Test Results - uses: EnricoMi/publish-unit-test-result-action@ca89ad036b5fcd524c1017287fb01b5139908408 # v2.11.0 - # https://github.com/EnricoMi/publish-unit-test-result-action#configuration + - name: Test Report + uses: dorny/test-reporter@afe6793191b75b608954023a46831a3fe10048d4 # v1.7.0 if: always() # also run if tests failed with: - comment_mode: off # do not create comment on pull requests - junit_files: app/build/test-results/**/*.xml + name: JUnit Report + path: app/build/test-results/**/*.xml + reporter: java-junit # Format of test results lint: name: Lint