From a7f754e89de6143448ba29adecd930078ea21a42 Mon Sep 17 00:00:00 2001 From: Carlos Ballesteros Velasco Date: Sun, 8 Mar 2020 00:07:47 +0100 Subject: [PATCH] Create gradle.yml --- .github/workflows/gradle.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/gradle.yml diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml new file mode 100644 index 0000000..ecb53c1 --- /dev/null +++ b/.github/workflows/gradle.yml @@ -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