forked from romeovs/lcov-reporter-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.yml
33 lines (32 loc) · 968 Bytes
/
action.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
name: Code Coverage Report
description: Comments a pull request with the code coverage
author: Romeo Van Snick
branding:
icon: check-square
color: green
inputs:
github-token:
description: Github token
required: true
lcov-file:
description: The location of the lcov.info file
required: false
lcov-base:
description: The location of the lcov file for the base branch
required: false
show-uncovered-lines:
description: Set to true to show the uncovered lines column
required: false
show-color-emoji:
description: Set to true to show a colored emoji if the coverage decreased or increased
required: false
show-old-value-for-files:
description: Set to true to show the old coverage result value
required: false
default: "true"
show-increase-per-files:
description: Set to true to show the increase/decrease difference of the coverage;
required: false
runs:
using: node20
main: dist/main.js