Files
codecov-action/action.yml
T

20 lines
434 B
YAML
Raw Normal View History

2019-08-06 18:02:35 -07:00
name: 'Codecov'
2019-08-07 06:17:19 -07:00
description: 'GitHub action that uploads coverage reports for your repository to codecov.io'
2019-08-05 21:19:25 -07:00
author: 'Ib @ Codecov'
inputs:
token:
2019-08-06 19:29:18 -07:00
description: 'Set the repository token'
2019-08-06 21:27:20 -07:00
required: false
2019-08-07 10:51:41 -07:00
file:
description: 'Path to coverage file'
required: false
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:
2019-08-06 14:02:11 -07:00
using: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.token }}
2019-08-07 10:51:41 -07:00
- ${{ inputs.file }}