-
Notifications
You must be signed in to change notification settings - Fork 18
37 lines (35 loc) · 1.02 KB
/
codecov.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
name: "Run Codecov"
on:
push:
branches:
- main
pull_request:
branches:
- '**'
workflow_dispatch:
jobs:
analyze-code-coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Java
uses: actions/setup-java@v3
with:
distribution: "temurin"
java-version: 17
- name: Generate coverage report
uses: gradle/gradle-build-action@v2
with:
arguments: testCodeCoverageReport --continue
- name: Archive test reports
uses: actions/upload-artifact@v3
with:
name: test
path: ./code-coverage-report/build/reports/jacoco/testCodeCoverageReport/testCodeCoverageReport.xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./code-coverage-report/build/reports/jacoco/testCodeCoverageReport/testCodeCoverageReport.xml
fail_ci_if_error: true
flags: unittests