From 804ca0ddc865b048f45ec78ab5218915feb87925 Mon Sep 17 00:00:00 2001 From: Ashwani Kumar Singh Date: Wed, 20 Mar 2024 09:54:18 +0530 Subject: [PATCH] Update-2 android.yml This commit is having echo msgs --- .github/workflows/android.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index 64fad13..9946e5a 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -20,13 +20,23 @@ jobs: distribution: 'temurin' cache: gradle + - name: Run a log message + run: echo This is my job running tests! + - name: Grant execute permission for gradlew run: chmod +x gradlew + - name: Clean the build run: ./gradlew clean + - name: Build with Gradle run: ./gradlew build + - name: AssembleDebug with Gradle run: ./gradlew assembleDebug - - name: Test with Gradle + + - name: Unit tests run: ./gradlew test + + - name: Build testing log + run: echo Tested successfully.