Skip to content

Commit ee7d3f0

Browse files
committed
Add GitHub Actions workflow
1 parent 071b8ce commit ee7d3f0

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/pull-request.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, pull_request]
4+
5+
jobs:
6+
test:
7+
name: Build app
8+
runs-on: ubuntu-18.04
9+
10+
steps:
11+
- uses: actions/checkout@v2
12+
- name: set up JDK 1.8
13+
uses: actions/setup-java@v1
14+
with:
15+
java-version: 1.8
16+
- name: Build app
17+
run: ./gradlew assembleDebug

0 commit comments

Comments
 (0)