forked from romeovs/lcov-reporter-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
31 lines (29 loc) · 822 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
name: Comment lcov Code Coverage Report
description: Comments on a pull request with a lcov code coverage report
author: Steffen Koette
branding:
icon: check-square
color: green
inputs:
github-token:
description: Github token
required: false
default: ${{ github.token }}
pr-number:
descirption: Number of the Pull Request
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
hide-branch-coverage:
description: Hides the branch coverage in the output if set to true
required: false
output-file:
description: Filename to output result to, instead of posting a comment
required: false
runs:
using: node16
main: dist/main.js