Files
codecov-action/action.yml
T

23 lines
739 B
YAML
Raw Normal View History

2019-08-05 21:19:25 -07:00
name: 'Codecov Github Action'
description: 'Github action that uploads coverage reports for this repository to codecov.io'
author: 'Ib @ Codecov'
inputs:
conf:
description: 'Used to specify the location of the .codecov.yml config file'
default: '.codecov.yml'
file:
description: 'Path to the code coverage data file to upload'
default: ''
flags:
description: 'Flag the upload to group coverage metrics (e.g. unittests | integration | ui,chrome)'
default: ''
token:
description: 'Set the private repository token (defaults to environment variable CODECOV_TOKEN)'
2019-08-06 05:10:05 -07:00
default: ${CODECOV_TOKEN}
2019-08-03 07:11:50 -07:00
branding:
2019-08-05 21:19:25 -07:00
color: 'red'
2019-08-03 07:11:50 -07:00
icon: 'umbrella'
2019-08-05 21:19:25 -07:00
runs:
using: 'node12'
2019-08-06 11:50:22 -07:00
main: 'main.js'
#plugin: 'checkout'