Skip to content

Commit f19f7e8

Browse files
committed
Setup github actions
Initial pipeline to run tests on PRs
1 parent dd15aec commit f19f7e8

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/android.yml

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

0 commit comments

Comments
 (0)