From 790c60ad069de39ac067053b269906bb4a50c3d7 Mon Sep 17 00:00:00 2001 From: nuclearfog <32868976+nuclearfog@users.noreply.github.com> Date: Wed, 12 May 2021 10:00:46 +0200 Subject: [PATCH] Create gradle.yml --- gradle.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 gradle.yml diff --git a/gradle.yml b/gradle.yml new file mode 100644 index 00000000..a23985a4 --- /dev/null +++ b/gradle.yml @@ -0,0 +1,19 @@ +# This workflow will build a Java project with Gradle +# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle + +name: Android build + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout the code + uses: actions/checkout@v2 + - name: Build the app + run: ./gradlew build