From c1b05611b26a6c8358339374bbafd8d8ac2db842 Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Mon, 21 Dec 2020 18:06:32 -0500 Subject: [PATCH] add gradle build GitHub workflow --- .github/workflows/build.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..1aab6a3 --- /dev/null +++ b/.github/workflows/build.yml @@ -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