Skip to content

Commit f1554b7

Browse files
committed
Use GitHub Actions.
1 parent cc12c10 commit f1554b7

File tree

2 files changed

+16
-36
lines changed

2 files changed

+16
-36
lines changed

Diff for: .github/workflows/build.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Build Android
2+
3+
on: [pull_request]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@v2
11+
- uses: actions/setup-java@v2
12+
with:
13+
distribution: 'temurin'
14+
java-version: '11'
15+
- name: Build and Lint with Gradle
16+
run: ./gradlew build

Diff for: .travis.yml

-36
This file was deleted.

0 commit comments

Comments
 (0)