From 9b62086484122f4f99071168a3be1ad1a2355e29 Mon Sep 17 00:00:00 2001 From: Brahmanandam Date: Thu, 17 Mar 2022 16:25:52 +0530 Subject: [PATCH] Fixed yml syntax error --- .github/workflows/android_CI.yml | 39 ++++++++++++++++---------------- 1 file changed, 19 insertions(+), 20 deletions(-) diff --git a/.github/workflows/android_CI.yml b/.github/workflows/android_CI.yml index c0c2f47..f283052 100644 --- a/.github/workflows/android_CI.yml +++ b/.github/workflows/android_CI.yml @@ -6,27 +6,26 @@ on: branches: [ main ] jobs: - test: - name: Run Unit Tests - runs-on: macos-latest - - steps: - - uses: actions/checkout@v2 - - name: set up JDK 11 - uses: actions/setup-java@v2 - with: - java-version: 11 - distribution: 'temurin' - cache: gradle - - name: Unit tests - uses: ReactiveCircus/android-emulator-runner@v2.14.3 - with: - api-level: 29 - script: ./gradlew connectedCheck - - uses: codecov/codecov-action@v2 - with: - fail_ci_if_error: true # optional (default = false) + test: + name: Run Unit Tests + runs-on: macos-latest + steps: + - uses: actions/checkout@v2 + - name: set up JDK 11 + uses: actions/setup-java@v2 + with: + java-version: 11 + distribution: 'temurin' + cache: gradle + - name: Unit tests + uses: ReactiveCircus/android-emulator-runner@v2.14.3 + with: + api-level: 29 + script: ./gradlew connectedCheck + - uses: codecov/codecov-action@v2 + with: + fail_ci_if_error: true # optional (default = false) build: name: Build project