Skip to content

Update changelog.yml #54

Update changelog.yml

Update changelog.yml #54

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
on: [push, pull_request]
jobs:
build:
name: Build APK
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v1
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Build debug APK
run: ./gradlew assembleDebug
test:
name: Unit Tests
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v1
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Run unit tests
run: ./gradlew test
- name: Android Test Report
uses: asadmansr/[email protected]
# androidTest:
# name: Instrumented Tests
# runs-on: macOS-latest
# steps:
# - uses: actions/checkout@v1
# - name: Set up JDK 11
# uses: actions/setup-java@v1
# with:
# java-version: 11
# - name: Run Instrumented Tests
# uses: reactivecircus/android-emulator-runner@v1
# with:
# api-level: 29
# arch: x86
# disable-animations: true
# script: ./gradlew connectedAndroidTest --stacktrace