-
-
Notifications
You must be signed in to change notification settings - Fork 101
47 lines (38 loc) · 950 Bytes
/
android.yml
File metadata and controls
47 lines (38 loc) · 950 Bytes
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
name: Quality Checks
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up JDK
uses: actions/setup-java@v5
with:
java-version: '21'
distribution: 'temurin'
cache: gradle
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Run all checks
run: ./gradlew check
- name: Generate coverage report
run: ./gradlew koverXmlReport
- name: Upload test results
if: always()
uses: actions/upload-artifact@v7
with:
name: test-results
path: |
**/build/test-results/
**/build/reports/tests/
- name: Upload coverage reports
if: always()
uses: actions/upload-artifact@v7
with:
name: coverage-reports
path: |
**/build/reports/kover/