Skip to content

Commit

Permalink
Fixed yml syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
puttabrahmam committed Mar 17, 2022
1 parent 09cf846 commit 9b62086
Showing 1 changed file with 19 additions and 20 deletions.
39 changes: 19 additions & 20 deletions .github/workflows/android_CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9b62086

Please sign in to comment.