From a9aa18ef9ede141f2fba3ebb465e5b3a46de4f16 Mon Sep 17 00:00:00 2001 From: t-bast Date: Wed, 26 Jul 2023 10:54:27 +0200 Subject: [PATCH] Store test results as artifact --- .github/workflows/test.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ef8c2711d..9eff0c767 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -65,3 +65,11 @@ jobs: - name: Check without integration if: matrix.os == 'macOS-latest' run: ./gradlew build -x jvmTest + + # Store test results for debugging + - name: Store test results + uses: actions/upload-artifact@v3 + with: + name: test results + path: build/reports + retention-days: 1