diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index a5374e5c5..a7b1e2621 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -14,10 +14,14 @@ jobs: with: java-version: 1.8 - name: Build with Gradle -# the gradlew does not have exec perm already so - run: chmod +x gradlew && ./gradlew build + run: | + chmod +x gradlew + ./gradlew clean build + ./gradlew test +# should test??? + - name: Upload APK uses: actions/upload-artifact@v2 with: - name: app + name: app-debug path: app/build/outputs/apk/debug/app-debug.apk