Skip to content

Commit ab63e4d

Browse files
committed
[Feature] Add Android workflow.
1 parent 76bb182 commit ab63e4d

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

.github/workflows/android.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Android CI
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- uses: actions/checkout@v1
12+
- name: set up JDK 1.8
13+
uses: actions/setup-java@v1
14+
with:
15+
java-version: 1.8
16+
- name: Build with Gradle
17+
run: ./gradlew assembleDebug lintVitalRelease

0 commit comments

Comments
 (0)