Skip to content

Commit

Permalink
Added jvm test
Browse files Browse the repository at this point in the history
  • Loading branch information
Reedyuk committed Jun 20, 2024
1 parent 339dbd6 commit 39ba329
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit 39ba329

Please sign in to comment.