We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3154fac commit 06fab30Copy full SHA for 06fab30
.github/workflows/build_and_test.yml
@@ -0,0 +1,18 @@
1
+name: Android Build and Test
2
+on: [push,pull_request]
3
+jobs:
4
+ build:
5
+ runs-on: ubuntu-latest
6
+ steps:
7
+ - uses: actions/checkout@v1
8
+
9
+ - name: Set Up JDK
10
+ - uses: actions/setup-java@v1
11
+ with:
12
+ java-version: 1.8
13
14
+ - name: Run Tests
15
+ run: ./gradlew test
16
17
+ - name: Build Project
18
+ run: ./gradlew assemble
0 commit comments