-
Notifications
You must be signed in to change notification settings - Fork 2
59 lines (47 loc) · 1.33 KB
/
android.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name: Android CI
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref_name }}
cancel-in-progress: true
on:
push:
branches: [ main ]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 25
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup JDK
uses: actions/setup-java@v4
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)
- name: Upload Test Reports
if: ${{ always() }}
uses: actions/upload-artifact@v4
with:
name: test-reports
path: '**/build/reports/tests/'
- name: Upload Coverage Reports
if: ${{ always() }}
uses: actions/upload-artifact@v3
with:
name: coverage-reports
path: '**/build/reports/coverage/'
- name: Upload APKs
uses: actions/upload-artifact@v4
with:
name: apks
path: '**/build/outputs/apk/'