From 3d11a372246919be2977569d26f5d525d008a873 Mon Sep 17 00:00:00 2001 From: Jegatheeswaran M Date: Wed, 18 May 2022 02:05:44 +0530 Subject: [PATCH] Create android_test.yml --- .github/workflows/android_test.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/android_test.yml diff --git a/.github/workflows/android_test.yml b/.github/workflows/android_test.yml new file mode 100644 index 0000000000..924aefd3cb --- /dev/null +++ b/.github/workflows/android_test.yml @@ -0,0 +1,27 @@ +name: Android Test CI + +on: + push: + branches: [ feature/git-actions ] + pull_request: + branches: [ feature/git-actions ] + +jobs: + build: + + runs-on: [ self-hosted ] + + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: set up JDK 11 + uses: actions/setup-java@v2 + with: + java-version: '11' + distribution: 'adopt' + cache: gradle + + - name: Grant execute permission for gradlew + run: chmod +x gradlew + - name: Build with Gradle + run: ./gradlew build