codecov-action/action.yml
2019-08-07 12:09:55 -07:00

19 lines
453 B
YAML

name: 'Codecov'
description: 'GitHub action that uploads coverage reports for your repository to codecov.io'
author: 'Ibrahim Ali @ Codecov'
inputs:
token:
description: 'Set the repository token'
required: false
file:
description: 'Path to coverage file to upload'
required: false
branding:
color: 'red'
icon: 'umbrella'
runs:
using: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.token }}
- ${{ inputs.file }}