From 9c6f2d6360e829b0d27adeac13ace43698431f74 Mon Sep 17 00:00:00 2001 From: Dmitry Kostyrev Date: Thu, 29 Jun 2023 16:22:06 +0100 Subject: [PATCH] Add step to upload functional tests results. --- .github/workflows/build.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b8a7941..be0e493 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -36,6 +36,12 @@ jobs: - name: Run functional test run: ./gradlew -p paranoid -Ppablo.shadow.enabled=true functionalTest + - uses: actions/upload-artifact@v3 + if: failure() + with: + name: functional-test-report + path: paranoid/build/reports/tests/functionalTest + - name: Run unit tests run: ./gradlew check -x lint -Pdevelopment=false -Dorg.gradle.unsafe.configuration-cache=true