Skip to content

Commit 06fab30

Browse files
Add kotlin actions workflow
1 parent 3154fac commit 06fab30

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/build_and_test.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)