Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/stefan-niedermann/nextcloud-deck.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/android.yml34
1 files changed, 34 insertions, 0 deletions
diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml
new file mode 100644
index 000000000..2983da899
--- /dev/null
+++ b/.github/workflows/android.yml
@@ -0,0 +1,34 @@
+name: Android CI
+
+on: push
+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
+
+ steps:
+ - uses: actions/checkout@v1
+ - name: set up JDK 1.8
+ uses: actions/setup-java@v1
+ with:
+ java-version: 1.8
+ - name: Build debug APK
+ run: bash ./gradlew assembleDebug --stacktrace
+ - name: Upload APK
+ uses: actions/upload-artifact@v1
+ with:
+ name: app
+ path: app/build/outputs/apk/debug/app-debug.apk \ No newline at end of file