Create pr_build_check.yml
This commit is contained in:
parent
80181068e4
commit
2824b6c2cf
19
.github/workflows/pr_build_check.yml
vendored
Normal file
19
.github/workflows/pr_build_check.yml
vendored
Normal 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
|
Loading…
x
Reference in New Issue
Block a user