-
Notifications
You must be signed in to change notification settings - Fork 22
41 lines (32 loc) · 994 Bytes
/
Copy pathandroid-unit-tests.yml
File metadata and controls
41 lines (32 loc) · 994 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
name: Android Unit Tests
on:
pull_request:
branches:
- "*"
jobs:
unit_tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up JDK 17
uses: actions/setup-java@v5
with:
java-version: '17'
distribution: 'temurin'
- name: Set up Gradle
uses: gradle/actions/setup-gradle@v6
- name: Build with Gradle
run: ./gradlew assembleDebug
- name: Run unit tests
run: ./gradlew testDebugUnitTest :opencloudApp:testOriginalDebugUnitTest --continue
- name: Generate coverage report
run: ./gradlew jacocoAggregatedCoverageVerification
- name: Upload coverage report
uses: actions/upload-artifact@v4
if: always()
with:
name: jacoco-coverage-report
path: |
build/reports/jacoco/jacocoAggregatedReport
build/reports/jacoco/jacocoAggregatedCoverageVerification