Create gradle.yml

This commit is contained in:
Robinson Gallego 2020-02-10 15:33:20 -05:00 committed by GitHub
parent a094bc3f7c
commit 61b1110c74
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

19
.github/workflows/gradle.yml vendored Normal file
View file

@ -0,0 +1,19 @@
name: Java CI
on: [push]
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: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build