mirror of
https://github.com/codecov/codecov-action.git
synced 2026-02-08 12:07:25 +00:00
19 lines
434 B
YAML
19 lines
434 B
YAML
name: 'Codecov'
|
|
description: 'GitHub action that uploads coverage reports for your repository to codecov.io'
|
|
author: 'Ib @ Codecov'
|
|
inputs:
|
|
token:
|
|
description: 'Set the repository token'
|
|
required: false
|
|
file:
|
|
description: 'Path to coverage file'
|
|
required: false
|
|
branding:
|
|
color: 'red'
|
|
icon: 'umbrella'
|
|
runs:
|
|
using: 'docker'
|
|
image: 'Dockerfile'
|
|
args:
|
|
- ${{ inputs.token }}
|
|
- ${{ inputs.file }}
|