-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (42 loc) · 1.31 KB
/
coverage.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
name: Test coverage
on:
pull_request:
branches: [ "master" ]
jobs:
job1:
name: Test coverage
runs-on: ubuntu-latest
steps:
- name: Checkout project
uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '11'
- name: Run jacoco on all modules
run: ./gradlew debugCoverage
- name: Combine jacoco reports
run: ./gradlew allDebugCoverage
- name: Upload report
uses: actions/upload-artifact@v3
with:
name: report
path: build/reports/jacoco/allDebugCoverage
- name: Download test reports
uses: actions/download-artifact@v3
with:
name: report
path: build/reports/jacoco/allDebugCoverage
- name: Upload to codecov
uses: codecov/codecov-action@v3
with:
files: "build/reports/jacoco/allDebugCoverage/allDebugCoverage.xml"
- name: Add coverage to PR
id: jacoco
uses: madrapps/[email protected]
with:
paths: ${{ github.workspace }}/build/reports/jacoco/allDebugCoverage/allDebugCoverage.xml
token: ${{ secrets.GITHUB_TOKEN }}
min-coverage-overall: 5
min-coverage-changed-files: 0 # temporary