Skip to content

Migrate to Compose UI (#36) #254

Migrate to Compose UI (#36)

Migrate to Compose UI (#36) #254

Workflow file for this run

name: Android CI
concurrency:
group: ${{ github.head_ref }}

Check failure on line 4 in .github/workflows/android.yml

View workflow run for this annotation

GitHub Actions / Android CI

Invalid workflow file

The workflow is not valid. .github/workflows/android.yml (Line: 4, Col: 10): Unexpected value ''
cancel-in-progress: true
on: [ push, pull_request ]
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 25
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup JDK
uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: 17
- name: Test and Build
run: ./gradlew build
- name: Generate Code-Coverage report
run: ./gradlew createDebugUnitTestCoverageReport
- name: Push Code-Coverage Report to codecov.io
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
run: bash <(curl -s https://codecov.io/bash)