From 38c5163ab953f92b79840803e8d2af8acf40f817 Mon Sep 17 00:00:00 2001 From: jobobby04 Date: Sat, 9 May 2020 18:51:15 -0400 Subject: [PATCH] Did removing this break the action? --- .github/workflows/android-debug.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/android-debug.yml b/.github/workflows/android-debug.yml index fa56c8e44..6729a2bc6 100644 --- a/.github/workflows/android-debug.yml +++ b/.github/workflows/android-debug.yml @@ -6,6 +6,19 @@ on: - 'master' jobs: + test: + name: Run Unit Tests + runs-on: ubuntu-18.04 + + steps: + - uses: actions/checkout@v1 + - name: set up JDK 1.8 + uses: actions/setup-java@v1 + with: + java-version: 1.8 + - name: Unit tests + run: bash ./gradlew test --stacktrace: + apk: name: Generate APK runs-on: ubuntu-18.04