-
Notifications
You must be signed in to change notification settings - Fork 5
41 lines (38 loc) · 1013 Bytes
/
co.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
name: CO
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
coverage:
name: "Generate coverage On ${{ matrix.os }}"
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
env:
OS: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up Java
uses: actions/setup-java@v1
with:
java-version: 11
- name: Generate coverage report
run: |
./gradlew clean
./gradlew :commons:check
./gradlew :intellij-idea:check
./gradlew codeCoverageReport
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: build/reports/jacoco/report.xml
flags: unittests
env_vars: OS
name: codecov-umbrella
fail_ci_if_error: true
path_to_write_report: ./coverage/codecov_report.txt
verbose: true