Create pr_build_check.yml

This commit is contained in:
arkon 2020-08-07 22:27:33 -04:00 committed by GitHub
parent 80181068e4
commit 2824b6c2cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

19
.github/workflows/pr_build_check.yml vendored Normal file
View File

@ -0,0 +1,19 @@
name: Pull request build check
on:
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Clone repo
uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build project
run: ./gradlew assembleDebug