59 lines
1.3 KiB
YAML
59 lines
1.3 KiB
YAML
name: CI
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout the code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Upload html test report
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: lint.html
|
|
path: app/build/reports/lint-results-debug.html
|
|
|
|
unit-test:
|
|
needs: [lint]
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout the code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Run tests
|
|
run: ./gradlew test
|
|
|
|
- name: Upload test report
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: unit_test_report
|
|
path: app/build/reports/tests/testDebugUnitTest/
|
|
|
|
package:
|
|
needs: [unit-test]
|
|
name: Generate APK
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout the code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: set up JDK 11
|
|
uses: actions/setup-java@v1
|
|
with:
|
|
java-version: 11.0
|
|
|
|
- name: Build debug APK
|
|
run: ./gradlew assembleDebug --stacktrace
|
|
|
|
- name: Upload APK
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: app-debug.apk
|
|
path: app/build/outputs/apk/debug/app-debug.apk
|