Create gradle.yml

This commit is contained in:
Carlos Ballesteros Velasco
2020-03-08 00:07:47 +01:00
committed by GitHub
parent 6b390103d4
commit a7f754e89d

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

@@ -0,0 +1,19 @@
name: Testing
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 jvmTest