add gradle build GitHub workflow

This commit is contained in:
Daniel Micay 2020-12-21 18:06:32 -05:00
parent 42185aa0a9
commit c1b05611b2
1 changed files with 19 additions and 0 deletions

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

@ -0,0 +1,19 @@
name: Build application
on:
pull_request:
push:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build with Gradle
run: ./gradlew build