mirror of
https://github.com/codecov/codecov-action.git
synced 2025-12-09 20:36:25 +00:00
31 lines
794 B
YAML
31 lines
794 B
YAML
# Codecov @codecov
|
|
# Ibrahim Ali @ibrahim0814
|
|
|
|
name: 'Codecov'
|
|
description: 'GitHub Action that uploads coverage reports for your repository to codecov.io'
|
|
author: 'Ibrahim Ali <@ibrahim0814> | Codecov'
|
|
inputs:
|
|
name:
|
|
description: 'User defined upload name. Visible in Codecov UI'
|
|
required: false
|
|
token:
|
|
description: 'Set the repository token'
|
|
required: false
|
|
file:
|
|
description: 'Path to coverage file to upload'
|
|
required: false
|
|
flags:
|
|
description: 'Flag upload to group coverage metrics (e.g. unittests | integration | ui,chrome)'
|
|
required: false
|
|
branding:
|
|
color: 'red'
|
|
icon: 'umbrella'
|
|
runs:
|
|
using: 'docker'
|
|
image: 'Dockerfile'
|
|
args:
|
|
- ${{ inputs.name }}
|
|
- ${{ inputs.token }}
|
|
- ${{ inputs.file }}
|
|
- ${{ inputs.flags }}
|
|
|