From 39ba32913cf33b6afcbb405874b04f3298ed817b Mon Sep 17 00:00:00 2001 From: Andrew Reed Date: Thu, 20 Jun 2024 09:12:19 +0100 Subject: [PATCH] Added jvm test --- .github/workflows/pull_request.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 8fa7d0956..254ea2dd7 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -108,3 +108,25 @@ jobs: with: name: "Firebase Debug Log" path: "**/firebase-debug.log" + build-jvm: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Setup test environment + uses: ./.github/actions/setup_test_action + timeout-minutes: 10 + - name: Run JVM Tests + run: ./gradlew cleanTest jvmTest + - name: Upload JVM test artifact + uses: actions/upload-artifact@v3 + if: failure() + with: + name: "JVM Test Report HTML" + path: | + **/build/reports/tests/jvmTest/ + - name: Upload Firebase Debug Log + uses: actions/upload-artifact@v3 + if: failure() + with: + name: "Firebase Debug Log" + path: "**/firebase-debug.log"