From ceb87cd0fa1d48433a290f64831746e8f09baff8 Mon Sep 17 00:00:00 2001 From: Kim Kulling Date: Sat, 12 Dec 2020 14:34:07 +0100 Subject: [PATCH] Create android_master.yml --- .github/workflows/android_master.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/android_master.yml diff --git a/.github/workflows/android_master.yml b/.github/workflows/android_master.yml new file mode 100644 index 000000000..8212493f7 --- /dev/null +++ b/.github/workflows/android_master.yml @@ -0,0 +1,23 @@ +name: Android Master + +on: + pull_request: + branches: + - 'master' + push: + branches: + - 'master' + +jobs: + Build: + name: Build + runs-on: ubuntu-18.04 + + steps: + - uses: actions/checkout@v1 + - name: Set up JDK 1.8 + uses: actions/setup-java@v1 + with: + java-version: 1.8 + - name: Build + run: bash ./tools/android/gradlew build